Retrieves the task type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

task_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the task type

string

Required

Max length: 255

is_default

Auto selected when creating a new task

boolean
sequence

Sorting field (0 first), to order them

integer
sales_organization_id

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

globally unique identifier
icon

string
only_for_e_service

boolean
default_assigned_user_group_id

globally unique identifier
enabled_for_job_create_follow_up

boolean
enabled_for_job_new_planning_needed

boolean
enabled_for_job_approval_customer_remark

boolean
enabled_for_job_attention_required

boolean
archived

archived?

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "ba4cb7ef-9af2-4f77-852d-dc247f723cfd",
  "name": "sample string 2",
  "is_default": true,
  "sequence": 4,
  "sales_organization_id": "28e2f603-be85-440e-a640-b5cae2d60fc4",
  "icon": "sample string 6",
  "only_for_e_service": true,
  "default_assigned_user_group_id": "32180532-07c0-4c67-af1c-4dc3487398fa",
  "enabled_for_job_create_follow_up": true,
  "enabled_for_job_new_planning_needed": true,
  "enabled_for_job_approval_customer_remark": true,
  "enabled_for_job_attention_required": true,
  "archived": true,
  "modified_dateutc": "2026-06-16T22:28:52.2431914+00:00"
}

application/xml, text/xml

Sample:
<task_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <default_assigned_user_group_id>32180532-07c0-4c67-af1c-4dc3487398fa</default_assigned_user_group_id>
  <enabled_for_job_approval_customer_remark>true</enabled_for_job_approval_customer_remark>
  <enabled_for_job_attention_required>true</enabled_for_job_attention_required>
  <enabled_for_job_create_follow_up>true</enabled_for_job_create_follow_up>
  <enabled_for_job_new_planning_needed>true</enabled_for_job_new_planning_needed>
  <icon>sample string 6</icon>
  <id>ba4cb7ef-9af2-4f77-852d-dc247f723cfd</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-06-16T22:28:52.243Z</modified_dateutc>
  <name>sample string 2</name>
  <only_for_e_service>true</only_for_e_service>
  <sales_organization_id>28e2f603-be85-440e-a640-b5cae2d60fc4</sales_organization_id>
  <sequence>4</sequence>
</task_type>