Retrieves the task_activity_log 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_log
NameDescriptionTypeAdditional 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": "b5043926-122a-4f69-8f5a-64451bbb6259",
  "task_id": "2dc5e33e-6555-4c9e-b1b9-6223d6421dd0",
  "task_activity_id": "5a12d9ff-2e3f-4d95-8cd6-d163de001fee",
  "user_id": "3a63ede1-3638-4ce4-b6cd-9a06b153112e",
  "contact_id": "dffe4c02-7bfb-4eb7-b41c-563c9c1f9b33",
  "subject": "sample string 6",
  "description": "sample string 7",
  "due_date": "2026-01-11T21:00:01.2335314+00:00",
  "is_closed": true,
  "date_closed": "2026-01-11T21:00:01.2335314+00:00",
  "reference_back_office": "sample string 11",
  "modified_dateutc": "2026-01-11T21:00:01.2335314+00:00"
}

application/xml, text/xml

Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>dffe4c02-7bfb-4eb7-b41c-563c9c1f9b33</contact_id>
  <date_closed>2026-01-11T21:00:01.233Z</date_closed>
  <description>sample string 7</description>
  <due_date>2026-01-11T21:00:01.233Z</due_date>
  <id>b5043926-122a-4f69-8f5a-64451bbb6259</id>
  <is_closed>true</is_closed>
  <modified_dateutc>2026-01-11T21:00:01.233Z</modified_dateutc>
  <reference_back_office>sample string 11</reference_back_office>
  <subject>sample string 6</subject>
  <task_activity_id>5a12d9ff-2e3f-4d95-8cd6-d163de001fee</task_activity_id>
  <task_id>2dc5e33e-6555-4c9e-b1b9-6223d6421dd0</task_id>
  <user_id>3a63ede1-3638-4ce4-b6cd-9a06b153112e</user_id>
</task_activity_log>