Retrieves all task types
Request Information
URI Parameters :
None.
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": "2c746b41-0492-4265-bc94-3b6237aa910c",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "6cebfa2e-f179-44f5-850a-8267196d13b6",
"icon": "sample string 6",
"only_for_e_service": true,
"default_assigned_user_group_id": "d4d54109-554a-4d28-a049-b9f40d4843eb",
"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:58:52.8139768+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>d4d54109-554a-4d28-a049-b9f40d4843eb</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>2c746b41-0492-4265-bc94-3b6237aa910c</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T20:58:52.813Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>6cebfa2e-f179-44f5-850a-8267196d13b6</sales_organization_id> <sequence>4</sequence> </task_type>