GET
/
export_status
curl --request GET \
  --url https://api.gumloop.com/api/v1/export_status \
  --header 'Authorization: Bearer <token>'
{
  "data_export_id": "<string>",
  "state": "PENDING",
  "created_ts": "2023-11-07T05:31:56Z",
  "finished_ts": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

user_id
string
required

The ID of the user requesting the export status.

data_export_id
string
required

The unique identifier of the data export job to check.

download
boolean
default:false

Whether to download the export file if the export is completed (default is false).

Response

200
application/json

Export status retrieved successfully, or file downloaded if download=true and export is completed

The response is of type object.