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

description

string
is_default

boolean
color

string
code

string
is_preventive

boolean
is_predictive

boolean
is_corrective

boolean
completion_show_documents

boolean
completion_show_installation_logs

boolean
completion_show_technician_remarks

boolean
completion_show_used_parts

boolean
completion_show_billable_hours

boolean
completion_show_status_intermediate_completion

boolean
completion_show_status_technically_completed

boolean
completion_show_status_completed

boolean
completion_show_status_waiting_further_action

boolean
completion_show_pdf

boolean
completion_show_notification

boolean
completion_use_technician_signature

boolean
completion_use_customer_signature

boolean
completion_use_both_signatures

boolean
completion_show_equipment_status

boolean
sales_organization_id

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

globally unique identifier
accept_payment

boolean
completion_show_optional_vat

boolean
completion_show_work_order_follow_up

boolean
completion_show_travel_fee

boolean
default_estimated_time

integer
modified_dateutc

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

date
completion_vat_rule_code

string
completion_vat_id_specified

globally unique identifier
use_technically_completed

boolean
archived

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "b5338317-faed-4927-8565-507082f35c51",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "color": "sample string 5",
  "code": "sample string 6",
  "is_preventive": true,
  "is_predictive": true,
  "is_corrective": true,
  "completion_show_documents": true,
  "completion_show_installation_logs": true,
  "completion_show_technician_remarks": true,
  "completion_show_used_parts": true,
  "completion_show_billable_hours": true,
  "completion_show_status_intermediate_completion": true,
  "completion_show_status_technically_completed": true,
  "completion_show_status_completed": true,
  "completion_show_status_waiting_further_action": true,
  "completion_show_pdf": true,
  "completion_show_notification": true,
  "completion_use_technician_signature": true,
  "completion_use_customer_signature": true,
  "completion_use_both_signatures": true,
  "completion_show_equipment_status": true,
  "sales_organization_id": "1a415c7e-7801-4d6c-bda7-c792d6d85546",
  "accept_payment": true,
  "completion_show_optional_vat": true,
  "completion_show_work_order_follow_up": true,
  "completion_show_travel_fee": true,
  "default_estimated_time": 30,
  "modified_dateutc": "2026-01-12T00:24:50.7218101+00:00",
  "completion_vat_rule_code": "sample string 32",
  "completion_vat_id_specified": "466fd38b-8e7e-4821-a97e-e68b629cbee0",
  "use_technically_completed": true,
  "archived": true
}

application/xml, text/xml

Sample:
<job_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <accept_payment>true</accept_payment>
  <archived>true</archived>
  <code>sample string 6</code>
  <color>sample string 5</color>
  <completion_show_billable_hours>true</completion_show_billable_hours>
  <completion_show_documents>true</completion_show_documents>
  <completion_show_equipment_status>true</completion_show_equipment_status>
  <completion_show_installation_logs>true</completion_show_installation_logs>
  <completion_show_notification>true</completion_show_notification>
  <completion_show_optional_vat>true</completion_show_optional_vat>
  <completion_show_pdf>true</completion_show_pdf>
  <completion_show_status_completed>true</completion_show_status_completed>
  <completion_show_status_intermediate_completion>true</completion_show_status_intermediate_completion>
  <completion_show_status_technically_completed>true</completion_show_status_technically_completed>
  <completion_show_status_waiting_further_action>true</completion_show_status_waiting_further_action>
  <completion_show_technician_remarks>true</completion_show_technician_remarks>
  <completion_show_travel_fee>true</completion_show_travel_fee>
  <completion_show_used_parts>true</completion_show_used_parts>
  <completion_show_work_order_follow_up>true</completion_show_work_order_follow_up>
  <completion_use_both_signatures>true</completion_use_both_signatures>
  <completion_use_customer_signature>true</completion_use_customer_signature>
  <completion_use_technician_signature>true</completion_use_technician_signature>
  <completion_vat_id_specified>466fd38b-8e7e-4821-a97e-e68b629cbee0</completion_vat_id_specified>
  <completion_vat_rule_code>sample string 32</completion_vat_rule_code>
  <default_estimated_time>30</default_estimated_time>
  <description>sample string 3</description>
  <id>b5338317-faed-4927-8565-507082f35c51</id>
  <is_corrective>true</is_corrective>
  <is_default>true</is_default>
  <is_predictive>true</is_predictive>
  <is_preventive>true</is_preventive>
  <modified_dateutc>2026-01-12T00:24:50.721Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>1a415c7e-7801-4d6c-bda7-c792d6d85546</sales_organization_id>
  <use_technically_completed>true</use_technically_completed>
</job_type>