Creates a new task_activity_log
Request Information
URI Parameters :
None.
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": "512f5f89-5c05-4a24-9d96-0aa84bc79a64",
"task_id": "6de00742-f4fe-4638-9b8c-6052cbbca941",
"task_activity_id": "b3b62076-1258-4175-9a30-7d3f69ace4c2",
"user_id": "dc7187d5-2083-4d04-8f71-8844db23289a",
"contact_id": "504166f2-3bca-4121-8307-e645a7b9b407",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-03-07T13:20:07.4579154+00:00",
"is_closed": true,
"date_closed": "2026-03-07T13:20:07.4579154+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-03-07T13:20:07.4579154+00:00"
}
application/xml, text/xml
Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>504166f2-3bca-4121-8307-e645a7b9b407</contact_id> <date_closed>2026-03-07T13:20:07.457Z</date_closed> <description>sample string 7</description> <due_date>2026-03-07T13:20:07.457Z</due_date> <id>512f5f89-5c05-4a24-9d96-0aa84bc79a64</id> <is_closed>true</is_closed> <modified_dateutc>2026-03-07T13:20:07.457Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>b3b62076-1258-4175-9a30-7d3f69ace4c2</task_activity_id> <task_id>6de00742-f4fe-4638-9b8c-6052cbbca941</task_id> <user_id>dc7187d5-2083-4d04-8f71-8844db23289a</user_id> </task_activity_log>
Response Information
Resource Description :
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.