Retrieves the task type with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The task type id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the task type, or 404 Not Found if it doesn't exist.
task_type| Name | Description | Type | Additional 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 |
Icon identifier used to render this task type in the UI. |
string | |
| only_for_e_service |
Indicates this task type is reserved for tasks created via the e-Service portal. |
boolean | |
| default_assigned_user_group_id |
Foreign key of the user group new tasks of this type are assigned to by default when no explicit assignee is provided. |
globally unique identifier | |
| enabled_for_job_create_follow_up |
Indicates a task of this type is automatically generated for follow-up when a job is created. |
boolean | |
| enabled_for_job_new_planning_needed |
Indicates a task of this type is automatically generated when a job needs new planning. |
boolean | |
| enabled_for_job_approval_customer_remark |
Indicates a task of this type is automatically generated when a customer leaves a remark on a job approval. |
boolean | |
| enabled_for_job_attention_required |
Indicates a task of this type is automatically generated when a job requires attention. |
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
{
"id": "bf7f968f-29bc-4903-98dc-b282a53ee0c6",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "cdc96c8e-6e2a-433d-ae70-c73ed7454adf",
"icon": "sample string 6",
"only_for_e_service": true,
"default_assigned_user_group_id": "3b1acc42-a369-47a2-ad4b-cf28b2340285",
"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-09-16T10:12:08.5972175+00:00"
}
application/xml, text/xml
<task_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <archived>true</archived> <default_assigned_user_group_id>3b1acc42-a369-47a2-ad4b-cf28b2340285</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>bf7f968f-29bc-4903-98dc-b282a53ee0c6</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T10:12:08.597Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>cdc96c8e-6e2a-433d-ae70-c73ed7454adf</sales_organization_id> <sequence>4</sequence> </task_type>