• Features
  • Pricing
Get Started

OverviewList ItemsCreate ItemGet ItemUpdate ItemTrash ItemRestore ItemDelete Permanently

Items

POST /v1/items/{itemId}/restore

Restore a previously trashed item.

POST /v1/items/{itemId}/restore restores an item from the trash.

Authentication

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

Path Parameters

NameTypeDescription
itemIdstring (uuid)UUID of the item to restore.

Example

curl -X POST "https://api.blueputto.com/v1/items/ITEM_ID/restore" \
  -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

DELETE /v1/items/{itemId}

Move an item to the trash without permanently deleting it.

DELETE /v1/items/{itemId}/permanent

Permanently delete an item.

On this page

AuthenticationPath ParametersExampleSuccess ResponseError Responses