Tag List

NOTE: User must be logged in as admin to access this API URL : api/tags-list Method : GET Query Parameters : Parameter Type Possible Values Required/Optional Description sort-field String name Optional Field name to sort sort-order String asc, desc Optional Sorting order either ascending or descending search-query String tag name Optional Keyword to be searched in Tag […]

Read More

Get Tag Details

NOTE: User must be logged in as admin to access this API URL:api/tag/{tag} Method: GET Description : Get Tag Details. Parameters: Parameter Type Optional/Required Description tag integer Required tag id of the tag to be fetched. Response: { “success”: true, “data”: { “tag”: { “id”: 1, “name”: “new tag”, “description”: “This is new tag” } } […]

Read More

Delete Tag

NOTE: User must be logged in as admin to access this API URL: api/tag-delete/{tag} Method: DELETE Description : Delete a Tag. Parameters: Parameter Type Optional/Required Description tag integer Required tag id of the tag to be deleted. Response: { “success”: true, “message”: “Tag Deleted Successfully” }

Read More

Create Tag

NOTE: User must be logged in as admin or as agent to access this API URL : api/tag Method : POST Query Parameters :   Parameter Type Possible Values Required/Optional Description name String new tag Required Tag Name description Text this is new tag Optional Tag Description Response: { “success”: true, “message”:”Tag saved Successfully” }

Read More

Update Tag

NOTE: User must be logged in as admin to access this API URL : api/tag/update/{tag} Method : PATCH Query Parameters :   Parameter Type Possible Values Required/Optional Description name String tag Name Required Tag Name description Text Tag Desciption Optional Tag Description Response: { “success”: true, “message”:”Tag updated Successfully” }

Read More

Ticket Priority List

NOTE: User must be logged in as admin to access this API URL : api/priority-list Method : GET Query Parameters : Parameter Type Possible Values Required/Optional Description sort-field String name Optional Field name to sort sort-order String asc, desc Optional Sorting order either ascending or descending search-query String Optional Keyword to be searched in Priority list page […]

Read More

Get Ticket Priority Details

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”, […]

Read More

Delete Ticket Priority

NOTE: User must be logged in as admin to access this API URL:api/priority/delete/{priorityId} Method: DELETE Description: Delete a Priority. Parameters: Parameter Type Optional/Required Description priorityId Integer Required priority id of the priority to be deleted. Success Response : { “success”: true, “message”: “Priority deletion request has been processed successfully. Priority will be deleted shortly after […]

Read More