• Features
  • Pricing
Get Started

List ObjectsCreate ObjectGet ObjectUpdate ObjectTrash ObjectRestore ObjectDelete Permanently

GET /v1/objects/{objectId}

Retrieve a single object by its UUID.

GET /v1/objects/{objectId} returns one object.

Authentication

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

Path Parameters

NameTypeDescription
objectIdstring (uuid)UUID of the object to fetch.

Example

curl "https://api.blueputto.com/v1/objects/OBJECT_ID" \
  -H "x-api-key: YOUR_API_KEY"

Success Response

200 OK

{
  "data": {}
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found
  • 429 Too Many Requests

POST /v1/objects

Create a new object by sending a JSON request body.

PATCH /v1/objects/{objectId}

Partially update an object with a JSON request body.

On this page

AuthenticationPath ParametersExampleSuccess ResponseError Responses