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": "7dfedd0f-408f-46a4-92c6-21a91ca2c05d",
  "name": "sample string 2",
  "is_default": true,
  "sequence": 4,
  "sales_organization_id": "caf7944c-7b01-4225-a946-51d2397127fe",
  "icon": "sample string 6",
  "only_for_e_service": true,
  "default_assigned_user_group_id": "5ad3591c-c26a-41b5-9195-26311f0a4421",
  "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-03-07T14:49:31.4547174+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>5ad3591c-c26a-41b5-9195-26311f0a4421</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>7dfedd0f-408f-46a4-92c6-21a91ca2c05d</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-03-07T14:49:31.454Z</modified_dateutc>
  <name>sample string 2</name>
  <only_for_e_service>true</only_for_e_service>
  <sales_organization_id>caf7944c-7b01-4225-a946-51d2397127fe</sales_organization_id>
  <sequence>4</sequence>
</task_type>