• Features
  • Pricing
Get Started

OverviewList ItemsCreate ItemGet ItemUpdate ItemTrash ItemRestore ItemDelete Permanently

Items

POST /v1/items

Create a new item by sending a JSON request body.

POST /v1/items creates a new item.

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 item-specific properties for this operation, so provide the fields your workspace expects.

Example

curl -X POST "https://api.blueputto.com/v1/items" \
  -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
  • 404 Not Found
  • 429 Too Many Requests

GET /v1/items

List items with pagination, free-text search, and an optional trash-only filter.

GET /v1/items/{itemId}

Retrieve a single item by its UUID.

On this page

AuthenticationRequest BodyExampleSuccess ResponseError Responses