# Get all exported files

You can return a list of all your exported files. The list can be filtered by the type of the exported data.

GET /api/public/exports/

Attributes Type Required Description
type string no Type of the exported data.
Those can be:

Section
- people
- products
- deals
- companies
- activities

Logs
- email_delivery_logs
- sms_delivery_logs
- email_clicks

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/exports/"

# Response

{
  "count": 3,
  "next": null,
  "previous": null,
  "results": 
    [
      {
        "export_type": "Users",
        "filename": "9a0540ab-adff-47dc-b866-872570f3e583.csv",
        "downloaded": true,
        "created_at": "2024-04-22T12:17:30.921191Z",
        "finished_at": "2024-04-22T12:17:31.866597Z",
        "size": "3.224 kB",
        "status": "finished"
      },
      {
        "export_type": "Users",
        "filename": "d1d69214-d07f-418f-bd85-27c49fd3398f.csv",
        "downloaded": false,
        "created_at": "2024-04-19T14:13:12.651414Z",
        "finished_at": "2024-04-19T14:13:13.459190Z",
        "size": "3.164 kB",
        "status": "finished"
      },
      {
        "export_type": "Email deliveries",
        "filename": "2b6ffbe9-9346-47e5-9b54-e98fa67e9667.csv",
        "downloaded": true,
        "created_at": "2024-04-17T07:17:45.914816Z",
        "finished_at": "2024-04-17T07:17:46.391238Z",
        "size": "7.796 kB",
        "status": "finished"
      }
    ]
}