Creates or updates a task activity log entry.

Request Information

URI Parameters :

None.

Body Parameters :

task_activity_log
NameDescriptionTypeAdditional 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

Sample:
{
  "id": "51bb9bb2-85a3-4190-9f6e-00754cd096a7",
  "task_id": "7c3fa24f-04ba-48c8-87ee-500e7c720226",
  "task_activity_id": "e7089345-0d36-4794-a540-354559a9dc33",
  "user_id": "d70c9f89-fa31-4aee-93b5-dd0ae2676151",
  "contact_id": "ea7a4473-60fe-4f53-8074-758c0c2b322a",
  "subject": "sample string 6",
  "description": "sample string 7",
  "due_date": "2026-09-16T09:21:54.5329997+00:00",
  "is_closed": true,
  "date_closed": "2026-09-16T09:21:54.5514387+00:00",
  "reference_back_office": "sample string 11",
  "modified_dateutc": "2026-09-16T09:21:54.5514387+00:00"
}

application/xml, text/xml

Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>ea7a4473-60fe-4f53-8074-758c0c2b322a</contact_id>
  <date_closed>2026-09-16T09:21:54.551Z</date_closed>
  <description>sample string 7</description>
  <due_date>2026-09-16T09:21:54.532Z</due_date>
  <id>51bb9bb2-85a3-4190-9f6e-00754cd096a7</id>
  <is_closed>true</is_closed>
  <modified_dateutc>2026-09-16T09:21:54.551Z</modified_dateutc>
  <reference_back_office>sample string 11</reference_back_office>
  <subject>sample string 6</subject>
  <task_activity_id>e7089345-0d36-4794-a540-354559a9dc33</task_activity_id>
  <task_id>7c3fa24f-04ba-48c8-87ee-500e7c720226</task_id>
  <user_id>d70c9f89-fa31-4aee-93b5-dd0ae2676151</user_id>
</task_activity_log>

Response Information

Resource Description :

IHttpActionResult containing the saved task activity log entry.

task_activity_log
NameDescriptionTypeAdditional 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

Response Formats

application/json, text/json

Sample:
{
  "id": "b70ff9e5-f641-48af-b8ca-b4ede43a1570",
  "task_id": "149d1db2-79fd-4c02-8aa7-1545e8a73156",
  "task_activity_id": "8d4cc4c0-641e-4956-990c-17b551611e87",
  "user_id": "79eb7730-32b2-4404-8648-885f813a76a2",
  "contact_id": "ab84ae4a-94ca-4835-9827-c28fc0758e7d",
  "subject": "sample string 6",
  "description": "sample string 7",
  "due_date": "2026-09-16T09:21:54.6267547+00:00",
  "is_closed": true,
  "date_closed": "2026-09-16T09:21:54.6267547+00:00",
  "reference_back_office": "sample string 11",
  "modified_dateutc": "2026-09-16T09:21:54.6267547+00:00"
}

application/xml, text/xml

Sample:
<task_activity_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>ab84ae4a-94ca-4835-9827-c28fc0758e7d</contact_id>
  <date_closed>2026-09-16T09:21:54.626Z</date_closed>
  <description>sample string 7</description>
  <due_date>2026-09-16T09:21:54.626Z</due_date>
  <id>b70ff9e5-f641-48af-b8ca-b4ede43a1570</id>
  <is_closed>true</is_closed>
  <modified_dateutc>2026-09-16T09:21:54.626Z</modified_dateutc>
  <reference_back_office>sample string 11</reference_back_office>
  <subject>sample string 6</subject>
  <task_activity_id>8d4cc4c0-641e-4956-990c-17b551611e87</task_activity_id>
  <task_id>149d1db2-79fd-4c02-8aa7-1545e8a73156</task_id>
  <user_id>79eb7730-32b2-4404-8648-885f813a76a2</user_id>
</task_activity_log>