This v1 API will be deprecated from 15th March 2020
Description:
This api will list of all existed releases in a system
URL : api/v1/servicedesk/all/releases
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": 8, "subject": "Release 1", "priority": "Medium", "created_at": "2018-11-27 06:17:18" } ], "first_page_url": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/releases?page=1", "from": 1, "last_page": 1, "last_page_url": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/releases?page=1", "next_page_url": null, "path": "http://localhost/faveo-helpdesk-advance/public/api/v1/servicedesk/all/releases", "per_page": 10, "prev_page_url": null, "to": 1, "total": 1 }