v1
latestOpenAPI 3.0.02026-07-24226294602.4 KBTask
Create Task
Create a new Task.
post/communications/tasks
Headers
x-api-keystring required
A valid api key. If you don't have one, please request one through the Web Integration screen.
Request body
Example request
{
"assignee": {
"object_type_id": 1234567891234567,
"id": 1234567891234567
},
"associated_people": [
{
"object_type_id": 1234567891234567,
"id": 1234567891234567
}
],
"followers": [
{
"object_type_id": 1234567891234567,
"id": 1234567891234567
}
],
"due_date": "2014-12-31",
"recurrence": {
"repeat_every_unit_id": 1234567891234567,
"ends_on_date": "2014-12-31",
"next_occurrence": "2014-12-31"
}
}Response
Task id created
Example response
{
"assignee": {
"object_type_id": 1234567891234567,
"id": 1234567891234567
},
"associated_people": [
{
"object_type_id": 1234567891234567,
"id": 1234567891234567
}
],
"followers": [
{
"object_type_id": 1234567891234567,
"id": 1234567891234567
}
],
"due_date": "2014-12-31",
"recurrence": {
"repeat_every_unit_id": 1234567891234567,
"ends_on_date": "2014-12-31",
"next_occurrence": "2014-12-31"
},
"completed": {
"object_type_id": 1234567891234567,
"completed_by_id": 1234567891234567,
"completed_on_datetime": "2014-12-31T23:59:59.938Z"
},
"created": {
"object_type_id": 1234567891234567,
"created_by_id": 1234567891234567,
"created_on_datetime": "2014-12-31T23:59:59.938Z"
},
"updated": {
"object_type_id": 1234567891234567,
"updated_by_id": 1234567891234567,
"updated_on_datetime": "2014-12-31T23:59:59.938Z"
}
}