Updates the task activity log entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The task activity log entry id. |
globally unique identifier |
Required |
Body Parameters :
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 |
Request Formats :
application/json, text/json
{
"id": "7887ca6e-2b46-46e1-888e-ca31ceffafbe",
"task_id": "4d378f1a-ddaf-4cdb-8095-8f491c65e7fd",
"task_activity_id": "cc8c4d12-4c9d-4013-94c1-89d84ea446b8",
"user_id": "78b9fa08-c7f7-49a9-a374-f4256d10319a",
"contact_id": "309d838d-32aa-41db-9566-b2679fa71335",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-09-16T10:12:08.9031628+00:00",
"is_closed": true,
"date_closed": "2026-09-16T10:12:08.9031628+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-09-16T10:12:08.9031628+00:00"
}
application/xml, text/xml
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>309d838d-32aa-41db-9566-b2679fa71335</contact_id> <date_closed>2026-09-16T10:12:08.903Z</date_closed> <description>sample string 7</description> <due_date>2026-09-16T10:12:08.903Z</due_date> <id>7887ca6e-2b46-46e1-888e-ca31ceffafbe</id> <is_closed>true</is_closed> <modified_dateutc>2026-09-16T10:12:08.903Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>cc8c4d12-4c9d-4013-94c1-89d84ea446b8</task_activity_id> <task_id>4d378f1a-ddaf-4cdb-8095-8f491c65e7fd</task_id> <user_id>78b9fa08-c7f7-49a9-a374-f4256d10319a</user_id> </task_activity_log>
Response Information
Resource Description :
IHttpActionResult containing the updated task activity log entry.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.