Retrieves all service_model_sla

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

service_model_sla
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

name

Name of service model

string
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
contact_time

Number of minute you should have contact

integer
hands_on_machine_time

Number of minute you shjould be on the place. we call it also the Arrival time

integer
resolution_time

Number of of minute to have it fixed

integer
sla_coverage_type

Is one of the following constant : BusinessHour , WorkingDays, EveryDay

string

Max length: 255

modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "04c04424-d38e-4dac-8cca-c411df9c7188",
  "name": "sample string 2",
  "sales_organization_id": "a85a9075-6666-4694-ad23-d99114d0e8b9",
  "contact_time": 4,
  "hands_on_machine_time": 5,
  "resolution_time": 6,
  "sla_coverage_type": "sample string 7",
  "modified_dateutc": "2026-01-11T21:00:17.0229237+00:00"
}

application/xml, text/xml

Sample:
<service_model_sla xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_time>4</contact_time>
  <hands_on_machine_time>5</hands_on_machine_time>
  <id>04c04424-d38e-4dac-8cca-c411df9c7188</id>
  <modified_dateutc>2026-01-11T21:00:17.022Z</modified_dateutc>
  <name>sample string 2</name>
  <resolution_time>6</resolution_time>
  <sales_organization_id>a85a9075-6666-4694-ad23-d99114d0e8b9</sales_organization_id>
  <sla_coverage_type>sample string 7</sla_coverage_type>
</service_model_sla>