NOTE: User must be logged in as admin to access this API

URL : v3/api/label-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 label name Optional Keyword to be searched in Label list page
limit Integer 10 Optional Number of records to be displayed in each page
page Integer 1 Optional Page number
status Boolean 1 Optional Status of Label

Success Response:

{
  "success": true,
  "data": {
    "current_page": 1,
    "first_page_url": "http://localhost/faveo_sd/faveo-helpdesk-advance/public/api/label-list?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "http://localhost/faveo_sd/faveo-helpdesk-advance/public/api/label-list?page=1",
    "next_page_url": null,
    "path": "http://localhost/faveo_sd/faveo-helpdesk-advance/public/api/label-list",
    "per_page": 10,
    "prev_page_url": null,
    "to": 2,
    "total": 2,
    "labels": [
      {
        "id": 20,
        "title": "q  wefjw",
        "color": "#000000",
        "order": 1,
        "status": 0
      },
      {
        "id": 21,
        "title": "gcvhg",
        "color": "#000000",
        "order": 8,
        "status": 1
      }
    ]
  }
}