Retrieve Customer Label

Retrieve a single customer label, if the requesting manager has access permissions to it.

  • Method: GET

  • URL: /api/v1/clabels/{id}/

  • Success response: 200 OK

  • Response format: JSON

Request parameters

  • Path parameters: id (label identifier)

  • Query parameters: none

  • Header parameters: none

  • Body: none

Response examples

200 OK
{
  "id": 1,
  "label": "Internal",
  "color": "#2e86de",
  "company": null
}
chevron-right404 Not Foundhashtag
{
  "message": "Ain't no cake like that."
}

Was this helpful?