POST v1/services/save
Add or update information about a Service
Request Information
URI Parameters
None.
Body Parameters
ServicesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceID |
Unique identifier of a Service |
integer |
None. |
| ServiceCategory |
Service Category |
ServiceCategoryModel |
None. |
| Service |
Service description |
string |
None. |
| Notes |
Notes |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"serviceID": 1,
"serviceCategory": {
"serviceCategoryID": 1,
"isActive": true,
"serviceCategory": "sample string 3"
},
"service": "sample string 2",
"notes": "sample string 3"
}
Response Information
Resource Description
ServicesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceID |
Unique identifier of a Service |
integer |
None. |
| ServiceCategory |
Service Category |
ServiceCategoryModel |
None. |
| Service |
Service description |
string |
None. |
| Notes |
Notes |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"serviceID": 1,
"serviceCategory": {
"serviceCategoryID": 1,
"isActive": true,
"serviceCategory": "sample string 3"
},
"service": "sample string 2",
"notes": "sample string 3"
}