Creates a new task activity log entry.
Request Information
URI Parameters :
None.
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": "58f77513-d99c-46dd-99b6-47bd0e4d02cc",
"task_id": "071735d1-411a-463d-b502-30b2ae2aa463",
"task_activity_id": "1f6744ff-4d44-4acf-9139-3bb500000dce",
"user_id": "c3ca9fce-0e8b-4fc0-ad1b-2fc59c73f995",
"contact_id": "e03903db-79fc-4a1b-8091-5c9d3ed7bb5c",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-09-16T10:09:34.3484475+00:00",
"is_closed": true,
"date_closed": "2026-09-16T10:09:34.3484475+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-09-16T10:09:34.3484475+00:00"
}
application/xml, text/xml
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>e03903db-79fc-4a1b-8091-5c9d3ed7bb5c</contact_id> <date_closed>2026-09-16T10:09:34.348Z</date_closed> <description>sample string 7</description> <due_date>2026-09-16T10:09:34.348Z</due_date> <id>58f77513-d99c-46dd-99b6-47bd0e4d02cc</id> <is_closed>true</is_closed> <modified_dateutc>2026-09-16T10:09:34.348Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>1f6744ff-4d44-4acf-9139-3bb500000dce</task_activity_id> <task_id>071735d1-411a-463d-b502-30b2ae2aa463</task_id> <user_id>c3ca9fce-0e8b-4fc0-ad1b-2fc59c73f995</user_id> </task_activity_log>
Response Information
Resource Description :
IHttpActionResult containing the created task activity log entry.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.