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

client = Client(api_key="<api-key>")
client.exports.cancel("exp_019478a23c5f7b8e9d12abcdef012345")
{
  "error": {
    "code": "invalid_argument",
    "message": "Invalid datastream_id: must be a positive integer"
  }
}

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 canceled successfully

Last modified on April 17, 2026