API ReferenceTasks
Get task
Required scope: `tasks:read`.
Authorization
bearerAuth AuthorizationBearer <token>
OAuth access token, e.g. Authorization: Bearer swot_….
In: header
Path Parameters
id*string
Task ID.
Response Body
application/json
application/json
curl -X GET "https://example.com/api/oauth/v1/tasks/string"{
"data": {
"id": "string",
"title": "string",
"description": "string",
"status": "string",
"due_date": "2019-08-24",
"conversation_id": "string",
"organization_id": "string",
"created_by": {
"id": "string",
"name": "string",
"email": "string",
"instagram_handle": "string",
"profile_picture_url": "string"
},
"assignees": [
{
"id": "string",
"name": "string",
"email": "string",
"instagram_handle": "string",
"profile_picture_url": "string"
}
],
"inserted_at": 0,
"updated_at": 0
}
}{
"error": "insufficient_scope",
"error_description": "The token is missing a required scope."
}