Retrieves the service_model with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
service_model| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| contract_id |
Contract Id |
globally unique identifier | |
| service_model_type |
Type of the service model |
string |
Max length: 255 |
| name |
Name of the service model |
string |
Max length: 255 |
| service_model_sla_id |
FK of service_model_sla |
globally unique identifier | |
| id2 | integer | ||
| reference_back_office |
Back office reference |
string |
Max length: 255 |
| archived | boolean | ||
| job_type_id | globally unique identifier | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "b710e0f6-eaad-410a-9491-923af5318a4a",
"contract_id": "79b16da6-cfb9-4482-b422-2025d79ab566",
"service_model_type": "sample string 3",
"name": "sample string 4",
"service_model_sla_id": "068d3aae-9de2-4b5c-8442-6f0a51dd4627",
"id2": 6,
"reference_back_office": "sample string 7",
"archived": true,
"job_type_id": "0c4c18ba-32ef-4ac2-b022-3ace034cecd3",
"modified_dateutc": "2026-06-16T21:17:58.8440081+00:00"
}
application/xml, text/xml
Sample:
<service_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <archived>true</archived> <contract_id>79b16da6-cfb9-4482-b422-2025d79ab566</contract_id> <id>b710e0f6-eaad-410a-9491-923af5318a4a</id> <id2>6</id2> <job_type_id>0c4c18ba-32ef-4ac2-b022-3ace034cecd3</job_type_id> <modified_dateutc>2026-06-16T21:17:58.844Z</modified_dateutc> <name>sample string 4</name> <reference_back_office>sample string 7</reference_back_office> <service_model_sla_id>068d3aae-9de2-4b5c-8442-6f0a51dd4627</service_model_sla_id> <service_model_type>sample string 3</service_model_type> </service_model>