Updates the task_activity_log with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
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 |
Request Formats :
application/json, text/json
Sample:
{
"id": "386d8648-4dfe-4f14-9ebd-8505fa193dd4",
"task_id": "fe4c5e9d-2f42-4748-82ff-25a94222aca1",
"task_activity_id": "bdc42385-d9d5-4b7e-94aa-f8d0b9071f36",
"user_id": "7a88c679-9507-4318-a1ec-854a5988672a",
"contact_id": "cc6f18aa-fac4-4ade-9791-ebc397197b15",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-01-11T20:59:44.7943312+00:00",
"is_closed": true,
"date_closed": "2026-01-11T20:59:44.7943312+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-01-11T20:59:44.7943312+00:00"
}
application/xml, text/xml
Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>cc6f18aa-fac4-4ade-9791-ebc397197b15</contact_id> <date_closed>2026-01-11T20:59:44.794Z</date_closed> <description>sample string 7</description> <due_date>2026-01-11T20:59:44.794Z</due_date> <id>386d8648-4dfe-4f14-9ebd-8505fa193dd4</id> <is_closed>true</is_closed> <modified_dateutc>2026-01-11T20:59:44.794Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>bdc42385-d9d5-4b7e-94aa-f8d0b9071f36</task_activity_id> <task_id>fe4c5e9d-2f42-4748-82ff-25a94222aca1</task_id> <user_id>7a88c679-9507-4318-a1ec-854a5988672a</user_id> </task_activity_log>
Response Information
Resource Description :
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.