Retrieves the work order type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

job_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the job type

string

Required

Max length: 50

sales_organization_id

Filled if specific to one organization, empty if global and can be used by all

globally unique identifier
description

Description of the job type

string

Max length: 4000

is_default

Used to auto select one object when creating a jobs

boolean
modified_dateutc

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

date
code

Field used for Embedded entity (store there your ERP PK)

string

Max length: 50

archived

Used to archive job type

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "884f40a3-c29f-4df0-a938-b8a0c2eeda84",
  "name": "sample string 2",
  "sales_organization_id": "d84d5b7a-2246-40dd-8893-b7fba66f07fb",
  "description": "sample string 4",
  "is_default": true,
  "modified_dateutc": "2025-07-31T13:48:15.8184469+00:00",
  "code": "sample string 7",
  "archived": true
}