POST v1/serviceCategory/save

Add or update information about a Service Category

Request Information

URI Parameters

None.

Body Parameters

ServiceCategoryModel
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "serviceCategoryID": 1,
  "isActive": true,
  "serviceCategory": "sample string 3"
}

Response Information

Resource Description

ServiceCategoryModel
NameDescriptionTypeAdditional 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"
}