AI Agents Data Export API
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:
| Name | Type | Required | Description |
|---|---|---|---|
| date | string | Yes | The date for which data export is requested, in YYYY-MM-DD format |
| ttl | integer | No | The 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
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| authorization | string | header | Yes | Your API authorization token |
| organizationid | string | header | Yes | The id of the organization |
| botid | string | header | Yes | The id of the bot for the export |
Example body
{"date": "2024-05-07","ttl": 10}