Retrieves all task activity log entries, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of task activity log entries.
task_activity_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| task_id |
Foreign key of the task this activity was performed on. |
globally unique identifier | |
| task_activity_id |
Foreign key of the activity type (see ). |
globally unique identifier | |
| user_id |
Foreign key of the user who performed this activity. |
globally unique identifier | |
| contact_id |
Foreign key of the contact this activity was performed with (e.g. who was called). |
globally unique identifier | |
| subject |
Short subject/title of this activity. |
string | |
| description |
Free-text description/notes about this activity. |
string | |
| due_date |
Deadline by which this activity should be completed. |
date | |
| is_closed |
Indicates whether this activity has been completed/closed. |
boolean | |
| date_closed |
Date and time this activity was closed. |
date | |
| reference_back_office |
The Id/Ref of the back office for this activity log. Used by Embedded entity. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
{
"id": "89b9f3ed-ed19-418d-b81e-63b5219e4f3c",
"task_id": "356bd4a8-b56f-4af8-94fb-f0747d12a7eb",
"task_activity_id": "6d7c8d98-29a9-4bb7-9864-313fce76ffc9",
"user_id": "4a97539e-d351-41a7-9308-4274c9b80865",
"contact_id": "be42f3e4-098b-4470-9998-bd1a5711f95c",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-09-16T10:09:23.3460072+00:00",
"is_closed": true,
"date_closed": "2026-09-16T10:09:23.3460072+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-09-16T10:09:23.3460072+00:00"
}
application/xml, text/xml
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>be42f3e4-098b-4470-9998-bd1a5711f95c</contact_id> <date_closed>2026-09-16T10:09:23.346Z</date_closed> <description>sample string 7</description> <due_date>2026-09-16T10:09:23.346Z</due_date> <id>89b9f3ed-ed19-418d-b81e-63b5219e4f3c</id> <is_closed>true</is_closed> <modified_dateutc>2026-09-16T10:09:23.346Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>6d7c8d98-29a9-4bb7-9864-313fce76ffc9</task_activity_id> <task_id>356bd4a8-b56f-4af8-94fb-f0747d12a7eb</task_id> <user_id>4a97539e-d351-41a7-9308-4274c9b80865</user_id> </task_activity_log>