Export Schemas
Delete export schema
Deletes a custom export schema. Built-in schemas cannot be deleted.
DELETE
Python (ticksupply library)
Authorizations
Your API key. Get one from the dashboard at https://app.ticksupply.com/api-keys
Headers
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:
128Path Parameters
Export schema ID
Pattern:
^sch_[a-f0-9]{32}$Response
Schema deleted
Last modified on April 5, 2026
Previous
Create or replace draftCreates an unpublished draft for a custom schema so you can iterate on
changes without affecting any exports that reference the current published version.
Two modes:
- **Empty body** — copies the latest published version into a new draft. Useful when
you want to start editing from the current state.
- **JSON body** (same shape as `PUT /v1/export-schemas/{id}/draft`) — creates the
draft directly with the supplied content.
If a draft already exists, it is replaced. The published version is not touched.
Built-in schemas have no drafts — the request returns `404 not_found`.
Publish the draft with `POST /v1/export-schemas/{id}/publish`, or discard it with
`DELETE /v1/export-schemas/{id}/draft`.
Next
Python (ticksupply library)