Add Label to Customer

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

  • Method: POST

  • URL: /api/v1/customerclabels/

Request body

Content-Type: application/json

Request body
{
  "customer": 101,
  "customer_label": 53
}

Parameters:

  • customer (required, integer)

  • customer_label (required, integer)

Example — Successful response (200)

200
{
    "customer": 101,
    "customer_label": 53
}

Example — Not found (404)

Was this helpful?