Retrieves the task type with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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 | 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": "b04c5666-c22b-4526-9eb0-abe09bd40f72",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "00f582bd-8e7e-4537-a931-06e85904acb2",
"icon": "sample string 6",
"only_for_e_service": true,
"default_assigned_user_group_id": "2660f33b-0fc6-4a93-8ceb-44cb42c6fce5",
"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-01-11T20:59:40.3403484+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>2660f33b-0fc6-4a93-8ceb-44cb42c6fce5</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>b04c5666-c22b-4526-9eb0-abe09bd40f72</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T20:59:40.340Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>00f582bd-8e7e-4537-a931-06e85904acb2</sales_organization_id> <sequence>4</sequence> </task_type>