POST v1/serviceCategory/delete/{serviceCategoryID}
Delete an existing Service Category by unique identifier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceCategoryID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ServiceCategoryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceCategoryID |
Unique identifier of a Service Category |
integer |
None. |
| IsActive |
Indicates if category is active or not |
boolean |
None. |
| ServiceCategory |
Service Category description |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"serviceCategoryID": 1,
"isActive": true,
"serviceCategory": "sample string 3"
}