For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The Task object
          • GET/tasks
          • POST/tasks
          • GET/tasks/{id}
          • GET/tasks/meta/patch/{id}
          • GET/tasks/meta/post
          • GET/tasks/remote-field-classes

Get started

  • Overview
  • Introduction
  • Unified API
  • Linked Account
  • Merge Link
  • Use cases

Implementation

  • Sandboxes
  • SDKs
  • API access
  • Syncing data
  • Writing data
  • Data minimization
  • Supplemental data
  • Errors
  • Integration metadata

API reference

  • ATS
  • HRIS
  • Accounting
  • Ticketing
  • CRM
  • File Storage
  • Knowledge Base
  • Chat

Resources

  • Help Center
  • Merge.dev
  • Changelog
© Merge 2026Terms of usePrivacy policy
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsTasks

The Task object

The Task Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "subject": "string",
7 "content": "string",
8 "owner": "string",
9 "account": "string",
10 "opportunity": "string",
11 "contact": "string",
12 "completed_date": "2023-01-01T00:00:00Z",
13 "due_date": "2023-01-01T00:00:00Z",
14 "status": "OPEN",
15 "task_url": "string",
16 "remote_was_deleted": true,
17 "field_mappings": {
18 "organization_defined_targets": {
19 "string": {}
20 },
21 "linked_account_defined_targets": {
22 "string": {}
23 }
24 },
25 "remote_data": [
26 {
27 "path": "string",
28 "data": {}
29 }
30 ],
31 "remote_fields": [
32 {
33 "remote_field_class": {
34 "id": "string",
35 "display_name": "string",
36 "remote_key_name": "string",
37 "description": "string",
38 "is_custom": true,
39 "is_common_model_field": true,
40 "is_required": true,
41 "field_type": "string",
42 "field_format": "string",
43 "field_choices": [
44 "string"
45 ],
46 "item_schema": {
47 "item_type": "string",
48 "item_format": "string",
49 "item_choices": [
50 "string"
51 ]
52 }
53 },
54 "value": {
55 "string": {}
56 }
57 }
58 ]
59}
Was this page helpful?
Previous

/stages/remote-field-classes

Next

/tasks

The Task object is used to represent a task, such as a to-do item.

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional

The third-party API ID of the matching object.

created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
subjectstring or nullOptional
The task's subject.
contentstring or nullOptional
The task's content.
ownerstring or nullOptionalformat: "uuid"
The task's owner.
accountstring or nullOptionalformat: "uuid"
The task's account.
opportunitystring or nullOptionalformat: "uuid"
The task's opportunity.
contactstring or nullOptionalformat: "uuid"
The task's contact.
completed_datedatetime or nullOptional
When the task is completed.
due_datedatetime or nullOptional
When the task is due.
statusenum or nullOptional
The task's status.
Allowed values:
task_urlstring or nullOptionalformat: "uri"<=2000 characters
The task's URL in the remote system.
remote_was_deletedbooleanOptionalRead-only

Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. Learn more.

field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only
remote_fieldslist of objectsOptionalRead-only