Retrieves the service model with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The service model id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the service model, or 404 Not Found if it doesn't exist.

service_model
NameDescriptionTypeAdditional 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

Internal ID (numeric). Will be used if reference_back_office is empty.

integer
reference_back_office

Back office reference

string

Max length: 255

archived

Indicates whether this service model has been archived (no longer selectable).

boolean
job_type_id

Foreign key of the job type used when jobs are generated under this service model.

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": "5bc25439-547b-4491-ac00-fe8acac456ab",
  "contract_id": "b6a7905c-1683-45df-9097-cc4d791fe3aa",
  "service_model_type": "sample string 3",
  "name": "sample string 4",
  "service_model_sla_id": "a7a45718-4229-4919-a5ed-47b89c70ff22",
  "id2": 6,
  "reference_back_office": "sample string 7",
  "archived": true,
  "job_type_id": "950ae553-09c5-4362-9e35-9542b5ee925a",
  "modified_dateutc": "2026-09-16T10:12:55.3309768+00:00"
}

application/xml, text/xml

Sample:
<service_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <contract_id>b6a7905c-1683-45df-9097-cc4d791fe3aa</contract_id>
  <id>5bc25439-547b-4491-ac00-fe8acac456ab</id>
  <id2>6</id2>
  <job_type_id>950ae553-09c5-4362-9e35-9542b5ee925a</job_type_id>
  <modified_dateutc>2026-09-16T10:12:55.330Z</modified_dateutc>
  <name>sample string 4</name>
  <reference_back_office>sample string 7</reference_back_office>
  <service_model_sla_id>a7a45718-4229-4919-a5ed-47b89c70ff22</service_model_sla_id>
  <service_model_type>sample string 3</service_model_type>
</service_model>