Use the Data Export API to retrieve signed URLs for enhanced Gen3 data exports for a specific date.

All requests should be made to your API base URL: https://api.ultimate.ai

JSON format

Data exports are represented as JSON objects with the following property:

NameTypeRequiredDescription
datestringYesThe date for which data export is requested, in YYYY-MM-DD format
ttlintegerNoThe duration, in minutes, that the URL is valid and usable

Get Signed URLs for Enhanced Data Export

  • POST /data-export/v3/get-signed-urls

Fetches downloadable (signed) URLs for enhanced Gen3 exported data on a specified date. The API responds with the requested date and a list of signed URLs for available export files. You can optionally specify a ttl value in minutes to define how long the signed URL remains valid.

Parameters

NameTypeInRequiredDescription
authorizationstringheaderYesYour API authorization token
organizationidstringheaderYesThe id of the organization
botidstringheaderYesThe id of the bot for the export

Example body

{  "date": "2024-05-07",  "ttl": 10}

Responses

200 The request was successful. Returns the requested date and a list of signed URLs for downloading export files.
400 Bad request. The request body is invalid or missing required fields.
500 Internal server error.