Retrieves the task type with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
job_type_view.id |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
job_type_view| Name | Description | Type | Additional 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": "ed2bcde4-0109-461a-b3d1-7033a9795936",
"name": "sample string 2",
"description": "sample string 3",
"is_default": true,
"color": "sample string 5",
"code": "sample string 6",
"sales_organization_id": "b4cb3a30-fd0d-448d-84b3-faeed7e00ae6",
"translations": [
{
"language_code": "sample string 1",
"value": "sample string 2"
},
{
"language_code": "sample string 1",
"value": "sample string 2"
}
],
"modified_dateutc": "2026-06-24T04:01:29.5495139+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>ed2bcde4-0109-461a-b3d1-7033a9795936</id>
<is_default>true</is_default>
<modified_dateutc>2026-06-24T04:01:29.549Z</modified_dateutc>
<name>sample string 2</name>
<sales_organization_id>b4cb3a30-fd0d-448d-84b3-faeed7e00ae6</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>