Retrieves the task_activity 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_activity| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name | string | ||
| only_for_system | boolean | ||
| sales_organization_id | 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": "bdabef28-f55d-451f-8ce3-49cd7a5b0bdb",
"name": "sample string 2",
"only_for_system": true,
"sales_organization_id": "d4443941-4e90-4bf7-ab89-6d725bdcdeb7",
"modified_dateutc": "2026-06-16T21:16:31.2307703+00:00"
}
application/xml, text/xml
Sample:
<task_activity xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>bdabef28-f55d-451f-8ce3-49cd7a5b0bdb</id> <modified_dateutc>2026-06-16T21:16:31.230Z</modified_dateutc> <name>sample string 2</name> <only_for_system>true</only_for_system> <sales_organization_id>d4443941-4e90-4bf7-ab89-6d725bdcdeb7</sales_organization_id> </task_activity>