• Features
  • Pricing
Get Started

List LabelsCreate LabelGet LabelUpdate LabelDelete LabelReorder Labels

Labels

POST /v1/labels

Create a new label by sending a JSON request body.

POST /v1/labels creates a new label.

Authentication

Send an organization API key in x-api-key or Authorization: Bearer <key>.

Request Body

Send a JSON object. The public OpenAPI schema does not enumerate label-specific properties for this route, so provide the fields your workspace expects.

Example

curl -X POST "https://api.blueputto.com/v1/labels" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "content-type: application/json" \
  -d '{}'

Success Response

201 Created

{
  "data": {}
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 429 Too Many Requests

GET /v1/labels

List labels with pagination.

GET /v1/labels/{labelId}

Retrieve a single label by its UUID.

On this page

AuthenticationRequest BodyExampleSuccess ResponseError Responses