GET v1/services/detail/{serviceID}
Retrieve detailed information about a specific Service by unique identifier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceID | integer |
Required |
Body Parameters
None.
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"
}