GET - Single Task details
Purpose
This API is used to retrieve detailed information about a particular task.
Request URL
Group Task:
https://mail.zoho.com/api/tasks/groups/<GroupID>/<entityId>
Personal Task:
https://mail.zoho.com/api/tasks/me/<entityId>
Request Parameters
Parameter | Data Type | Description |
GroupID* | Long | The unique identifier used for groups in the organization |
entityId* | Long | The unique identifer assigned to each task |
* - Mandatory parameters
Response Codes
Please refer Response Codes.
Sample Request
CopiedGroup Task:
https://mail.zoho.com/api/tasks/groups/<53658048>/<48184000000091002>
Personal Task:
https://mail.zoho.com/api/tasks/me/<48184000000091002>
Sample Response
CopiedGroup Task:
{
"status": {
"code": 200,
"description": "success"
},
"data": {
"tasks": [
{
"owner": {
"name": "Rebecca",
"id": 54136518
},
"numberOfSubtasks": 0,
"modifiedTime": "2018-03-28T12:46:33+05:30",
"attachments": [],
"reminder": {
"dateTime": "2018-03-28T15:00:00+05:30",
"emailReminder": false,
"popupReminder": true
},
"subtasks": [],
"dueDate": "28/03/2018",
"description": "Blog posts and announcements",
"project": {
"name": "Blogging",
"id": "48184000000005003"
},
"title": "Revamp Announcements",
"priority": "Normal",
"tags": [],
"createdAt": "2018-03-27T20:55:31+05:30",
"followers": [],
"namespaceId": "54224987",
"id": "48184000000091002",
"assignee": null,
"status": "In Progress"
}
]
}
}