Retrieves the task_activity with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

task_activity
NameDescriptionTypeAdditional 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": "ee6b7cc9-3c16-49cc-b96b-7e33b9a54631",
  "name": "sample string 2",
  "only_for_system": true,
  "sales_organization_id": "d802eebb-87d3-4a19-a8eb-8eeafa308a3e",
  "modified_dateutc": "2026-03-07T13:13:06.757504+00:00"
}

application/xml, text/xml

Sample:
<task_activity xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>ee6b7cc9-3c16-49cc-b96b-7e33b9a54631</id>
  <modified_dateutc>2026-03-07T13:13:06.757Z</modified_dateutc>
  <name>sample string 2</name>
  <only_for_system>true</only_for_system>
  <sales_organization_id>d802eebb-87d3-4a19-a8eb-8eeafa308a3e</sales_organization_id>
</task_activity>