Statuses
POST /v1/statuses
Create a new status by sending a JSON request body.
POST /v1/statuses creates a new status.
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 status-specific properties for this route, so provide the fields your workspace expects.
Example
curl -X POST "https://api.blueputto.com/v1/statuses" \
-H "x-api-key: YOUR_API_KEY" \
-H "content-type: application/json" \
-d '{}'Success Response
201 Created
{
"data": {}
}Error Responses
400 Bad Request401 Unauthorized429 Too Many Requests