Skip to main content
DELETE
/
v1
/
models
/
spreadsheet
/
{id}
Delete spreadsheet
curl --request DELETE \
  --url https://api.abloatai.com/v1/models/spreadsheet/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "commit_receipt",
  "clientTxId": "<string>",
  "serverTxId": "<string>",
  "success": true,
  "lastSyncId": 123,
  "ops": 123,
  "error": {
    "code": "<string>",
    "message": "<string>",
    "field": "<string>",
    "requiredCapability": {
      "scope": "<string>",
      "constraints": {},
      "issuer": "<string>",
      "ttlSeconds": 123,
      "nonce": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

API key (sk_live_…) or a scoped capability token. The same header carries both — the server discriminates by token shape.

Headers

Idempotency-Key
string

Replay-safe identifier; derive it from the business event, not a random value. Same key + same body returns the same receipt.

Path Parameters

id
string
required

Record id.

Response

Commit receipt.

object
enum<string>
required
Available options:
commit_receipt
clientTxId
string
required
serverTxId
string
required
success
boolean
required
status
enum<string>
required
Available options:
confirmed,
rejected
lastSyncId
integer
ops
integer
error
object