Create task
curl --request POST \
--url https://dev-public-api.openphone.dev/tasks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Quo-Api-Version: <quo-api-version>' \
--data '
{
"title": "Example task title",
"description": "This is a task description.",
"conversationId": "<string>",
"dueDate": "2023-11-07T05:31:56Z",
"assignedTo": "US123abc"
}
'{
"data": {
"taskId": "TK123",
"revision": 2
}
}{
"message": "The input was invalid",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"trace": "6897907457496870895"
}{
"message": "User is unauthorized to perform this action",
"docs": "https://quo.com/docs",
"title": "Unauthorized",
"trace": "6897907457496870895"
}{
"message": "User is forbidden to perform this action",
"docs": "https://quo.com/docs",
"title": "Forbidden",
"trace": "6897907457496870895"
}{
"message": "The contact was not found",
"docs": "https://quo.com/docs",
"title": "Not Found",
"trace": "6897907457496870895"
}{
"message": "An unknown error has occurred",
"docs": "https://quo.com/docs",
"title": "Unknown Error",
"trace": "6897907457496870895"
}Tasks
Create task
Create a new task
POST
/
tasks
Create task
curl --request POST \
--url https://dev-public-api.openphone.dev/tasks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Quo-Api-Version: <quo-api-version>' \
--data '
{
"title": "Example task title",
"description": "This is a task description.",
"conversationId": "<string>",
"dueDate": "2023-11-07T05:31:56Z",
"assignedTo": "US123abc"
}
'{
"data": {
"taskId": "TK123",
"revision": 2
}
}{
"message": "The input was invalid",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"trace": "6897907457496870895"
}{
"message": "User is unauthorized to perform this action",
"docs": "https://quo.com/docs",
"title": "Unauthorized",
"trace": "6897907457496870895"
}{
"message": "User is forbidden to perform this action",
"docs": "https://quo.com/docs",
"title": "Forbidden",
"trace": "6897907457496870895"
}{
"message": "The contact was not found",
"docs": "https://quo.com/docs",
"title": "Not Found",
"trace": "6897907457496870895"
}{
"message": "An unknown error has occurred",
"docs": "https://quo.com/docs",
"title": "Unknown Error",
"trace": "6897907457496870895"
}Authorizations
Headers
API version header. Supported values: 2026-03-30
Available options:
2026-03-30 Body
application/json
The title of the task
Example:
"Example task title"
The description of the task
Example:
"This is a task description."
Pattern:
^CN(.*)$The unique identifier of the actor assigned to this task.
Pattern:
^US(.*)$Example:
"US123abc"
Response
Created
Show child attributes
Show child attributes
Was this page helpful?