Image Export
How to export images - Abyssale REST API
Last updated
How to export images - Abyssale REST API
Last updated
You can generate an export (.zip format) containing several images.
This process is asynchronous and requires a webhook server to listen to export events.
If the export request is accepted, the API call returns the export_id
. It represents the ID of the asynchronous export and allows toto identify the asynchronous response.
400
: A given parameter is invalid. Body response:
404
: One the given banner ID cannot be found.
Once the export is generated on the Abyssale side, a NewExport
event is sent (POST) to the callback_url
If the initial request returns an export ID, the NewExport event will always be sent.
As this method is asynchronous you need to provide a callback URL that will be called back when the export is done. We will do a POST request on this URL with a JSON payload.
An array of string that corresponds to the banners IDs you would like to export.
The url that will be called once the generation of your export is done.
"https://your-webhook.com/export-abyssale"
Ok
Unique identifier (UUID) of the asynchronous export. Keep it to be able to identify the asynchronous response.
"64238d01-d402-474b-8c2d-fbc957e9d290"