Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

job_type_view
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of job type

string
description

Description

string
is_default

Is default type

boolean
color

Color

string
code

Code

string
sales_organization_id

Sale organization id

globally unique identifier
translations

List of translations per language

Collection of job_type_translations_per_language
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "d064c4a9-f3de-4a70-a760-61fb94481221",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "color": "sample string 5",
  "code": "sample string 6",
  "sales_organization_id": "f946c45e-3826-4d69-907e-88a164a5a90e",
  "translations": [
    {
      "language_code": "sample string 1",
      "value": "sample string 2"
    },
    {
      "language_code": "sample string 1",
      "value": "sample string 2"
    }
  ],
  "modified_dateutc": "2026-06-24T04:05:04.5862133+00:00"
}

application/xml, text/xml

Sample:
<job_type_view xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 6</code>
  <color>sample string 5</color>
  <description>sample string 3</description>
  <id>d064c4a9-f3de-4a70-a760-61fb94481221</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-06-24T04:05:04.586Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>f946c45e-3826-4d69-907e-88a164a5a90e</sales_organization_id>
  <translations xmlns:d2p1="http://schemas.datacontract.org/2004/07/Odyssee.ServiceDesk.Api.Models">
    <d2p1:job_type_translations_per_language>
      <d2p1:language_code>sample string 1</d2p1:language_code>
      <d2p1:value>sample string 2</d2p1:value>
    </d2p1:job_type_translations_per_language>
    <d2p1:job_type_translations_per_language>
      <d2p1:language_code>sample string 1</d2p1:language_code>
      <d2p1:value>sample string 2</d2p1:value>
    </d2p1:job_type_translations_per_language>
  </translations>
</job_type_view>