This v1 API will be deprecated from 15th March 2020
Description:
This api will list of all existed changes in a system
URL : api/v1/servicedesk/all/changes
Replace this URL with you helpdesk URL
Parameters :
Name | Data Type | Required / Optional | Description |
api_key | String | Optional | An alphanumeric code used to authenticate your API calls |
token | String | Required | token generated for a user |
HTTP Method : GET
Response
- Response Format : JSON
Sample JSON Success Response :
{ "current_page": 1, "data": [ { "id": 2, "subject": "Macbook touch pad change", "priority": "Low", "created_at": "2018-11-21 05:32:01" }, { "id": 16, "subject": "updated", "priority": "Medium", "created_at": "2018-11-22 06:38:23" }, { "id": 1, "subject": "Acer battery change", "priority": "High", "created_at": "2018-11-21 05:30:19" }, { "id": 3, "subject": "Logitech mouse change", "priority": "High", "created_at": "2018-11-21 05:33:29" } ], "first_page_url": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/changes?page=1", "from": 1, "last_page": 1, "last_page_url": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/changes?page=1", "next_page_url": null, "path": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/changes", "per_page": 10, "prev_page_url": null, "to": 4, "total": 4 }