Skip to main content
DELETE
/
v1
/
exports
/
{id}
Python (ticksupply library)
# pip install ticksupply
from ticksupply import Client

client = Client(api_key="<api-key>")
client.exports.delete("exp_019478a23c5f7b8e9d12abcdef012345")
{
  "error": {
    "code": "unauthenticated",
    "message": "Invalid or missing API key"
  }
}

Authorizations

X-Api-Key
string
header
required

Your API key. Get one from the dashboard at https://app.ticksupply.com/api-keys

Headers

Idempotency-Key
string<uuid>

Unique key for idempotent requests. If you retry a request with the same key, you'll receive the original response without the operation being performed again.

Must be a valid UUID (any version — v4 recommended for uniqueness), up to 128 characters.

Maximum string length: 128

Path Parameters

id
string
required

Export job ID (prefixed format, e.g., exp_xxx)

Pattern: ^exp_[a-f0-9]{32}$

Response

Export deleted successfully

Last modified on April 17, 2026