Create Customer Label

URL : /api/v1/clabels/

Method : POST

Parameters

  • label - String

  • color - String

    • must be hexadecimal color value with the following format: #RRGGBB

    • Example: #2e86de

Data example

{
    "label": "Label1",
    "color": "#2e86de"
}

Success Response

Code : 200 OK

Content examples :

{
    "id": 53,
    "label": "Label1",
    "color": "#2e86de",
    "company": 339
}

Last updated

Was this helpful?