List Customer Labels

URL : /api/v1/clabels/

Method : GET

Query parameters

Pagination

Default pagination is 20 results per page.

  • limit - Number of results to return per page.

    • Example: limit=20

  • offset - The initial index from which to return the results.

    • Example: offset=21

Success Response

Code : 200 OK

Content examples :

{
    "count": 5,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 52,
            "label": "Label1",
            "color": "#2e86de",
            "company": 339
        },
        ...
    ]
}

Last updated

Was this helpful?