Retrieves the task_activity_log 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_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| task_id | globally unique identifier | ||
| task_activity_id | globally unique identifier | ||
| user_id | globally unique identifier | ||
| contact_id | globally unique identifier | ||
| subject | string | ||
| description | string | ||
| due_date | date | ||
| is_closed | boolean | ||
| date_closed | date | ||
| reference_back_office | string | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "97635c32-de47-46da-b0ba-3c9984383526",
"task_id": "772b1572-5f47-4a41-9e13-ae374cbc6b65",
"task_activity_id": "72d37d31-1175-4d1e-b2c2-7bd1ab4e39f0",
"user_id": "4209693f-a582-41d4-907e-7723be494079",
"contact_id": "d4fc5cb5-8487-4ada-9a43-0a00aa3c624e",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-06-16T21:16:30.758505+00:00",
"is_closed": true,
"date_closed": "2026-06-16T21:16:30.758505+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-06-16T21:16:30.758505+00:00"
}
application/xml, text/xml
Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>d4fc5cb5-8487-4ada-9a43-0a00aa3c624e</contact_id> <date_closed>2026-06-16T21:16:30.758Z</date_closed> <description>sample string 7</description> <due_date>2026-06-16T21:16:30.758Z</due_date> <id>97635c32-de47-46da-b0ba-3c9984383526</id> <is_closed>true</is_closed> <modified_dateutc>2026-06-16T21:16:30.758Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>72d37d31-1175-4d1e-b2c2-7bd1ab4e39f0</task_activity_id> <task_id>772b1572-5f47-4a41-9e13-ae374cbc6b65</task_id> <user_id>4209693f-a582-41d4-907e-7723be494079</user_id> </task_activity_log>