Retrieves all task types, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of task types.
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": "491d5f54-f446-4b07-9c0a-5c743ff4977b",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "9f7b4ed7-6d7a-4ae1-a916-5e432a15886d",
"icon": "sample string 6",
"only_for_e_service": true,
"default_assigned_user_group_id": "69ee6cf6-ca1f-4413-ab6d-99992aed6bfd",
"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:09:36.1398761+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>69ee6cf6-ca1f-4413-ab6d-99992aed6bfd</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>491d5f54-f446-4b07-9c0a-5c743ff4977b</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T10:09:36.139Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>9f7b4ed7-6d7a-4ae1-a916-5e432a15886d</sales_organization_id> <sequence>4</sequence> </task_type>