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": "ff4ae94f-1ea2-455f-8441-4736ad6de393",
"task_id": "6387f958-5b45-417b-a8d1-e5775debd67b",
"task_activity_id": "adb8ce10-f735-499f-a7ad-5ff5318e9427",
"user_id": "4d54219a-2fa3-4356-8a7d-7726b4cf2dde",
"contact_id": "066f74c3-fa12-4bb1-adf2-6cf949756886",
"subject": "sample string 6",
"description": "sample string 7",
"due_date": "2026-01-11T20:58:55.1455584+00:00",
"is_closed": true,
"date_closed": "2026-01-11T20:58:55.1455584+00:00",
"reference_back_office": "sample string 11",
"modified_dateutc": "2026-01-11T20:58:55.1455584+00:00"
}
application/xml, text/xml
Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>066f74c3-fa12-4bb1-adf2-6cf949756886</contact_id> <date_closed>2026-01-11T20:58:55.145Z</date_closed> <description>sample string 7</description> <due_date>2026-01-11T20:58:55.145Z</due_date> <id>ff4ae94f-1ea2-455f-8441-4736ad6de393</id> <is_closed>true</is_closed> <modified_dateutc>2026-01-11T20:58:55.145Z</modified_dateutc> <reference_back_office>sample string 11</reference_back_office> <subject>sample string 6</subject> <task_activity_id>adb8ce10-f735-499f-a7ad-5ff5318e9427</task_activity_id> <task_id>6387f958-5b45-417b-a8d1-e5775debd67b</task_id> <user_id>4d54219a-2fa3-4356-8a7d-7726b4cf2dde</user_id> </task_activity_log>
Response Information
Resource Description :
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.