NOTE: User must be logged in as admin to access this API
URL: api/priority/{priorityId}
Method: GET
Description: Get Priority Details.
Parameters:
| Parameter | Type | Optional/Required | Description |
| priorityId | Integer | Required | priority id of the priority to be fetched. |
Success Response :
{
"success": true,
"data": {
"priority": [
{
"priority_id": 2,
"priority": "Normal",
"priority_desc": "Normal",
"priority_color": "#00bfef",
"ispublic": 1,
"is_default": 1,
"created_at": null,
"updated_at": null
}
]
}
}