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
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 "remote_was_deleted": true,
16 "field_mappings": {},
17 "remote_data": [
18 {
19 "path": "string",
20 "data": {}
21 }
22 ],
23 "remote_fields": [
24 {
25 "remote_field_class": {
26 "id": "string",
27 "display_name": "string",
28 "remote_key_name": "string",
29 "description": "string",
30 "is_custom": true,
31 "is_common_model_field": true,
32 "is_required": true,
33 "field_type": "string",
34 "field_format": "string",
35 "field_choices": [
36 "string"
37 ],
38 "item_schema": {
39 "item_type": "string",
40 "item_format": "string",
41 "item_choices": [
42 "string"
43 ]
44 }
45 },
46 "value": {
47 "string": {}
48 }
49 }
50 ]
51}
Was this page helpful?
Previous

/stages/remote-field-classes

Next

/tasks

Built with

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

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional
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
Allowed values:
remote_was_deletedbooleanOptionalRead-only
field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only
remote_fieldslist of objectsOptionalRead-only