Labels

List Labels

Get a list of all labels for a team

GET
/api/v1/labels
AuthorizationBasic <token>

Basic API key authentication. Create a new API key and secret in the Recommand dashboard.

In: header

Response Body

application/json

application/json

curl -X GET "https://app.recommand.eu/api/v1/labels"
{
  "success": true,
  "labels": [
    {
      "id": "string",
      "teamId": "string",
      "externalId": "string",
      "name": "string",
      "colorHex": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "success": false,
  "errors": {
    "property1": [
      "string"
    ],
    "property2": [
      "string"
    ]
  }
}