Retrieves the task activity with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The task activity id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the task activity, or 404 Not Found if it doesn't exist.
task_activity| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name of this activity type. |
string | |
| only_for_system |
Indicates this activity type is reserved for system-generated activities and should not be selectable by users. |
boolean | |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all. |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "d2382949-1f6f-4f23-815e-4a97b6a8e09c",
"name": "sample string 2",
"only_for_system": true,
"sales_organization_id": "20300b09-c399-4136-8a55-fb0b50a6d8ce",
"modified_dateutc": "2026-09-16T10:11:53.2459367+00:00"
}
application/xml, text/xml
Sample:
<task_activity xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>d2382949-1f6f-4f23-815e-4a97b6a8e09c</id> <modified_dateutc>2026-09-16T10:11:53.245Z</modified_dateutc> <name>sample string 2</name> <only_for_system>true</only_for_system> <sales_organization_id>20300b09-c399-4136-8a55-fb0b50a6d8ce</sales_organization_id> </task_activity>