POST
/
export_data
curl --request POST \
  --url https://api.gumloop.com/api/v1/export_data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "user_id": "<string>",
  "export_fields": [
    "workbook_id"
  ],
  "start_date": "2023-11-07T05:31:56Z",
  "end_date": "2023-11-07T05:31:56Z",
  "include_all_workspaces": true,
  "include_personal_workspaces": true,
  "workspace_ids": [
    "<string>"
  ]
}'
{
  "success": true,
  "data_export_id": "<string>",
  "state": "<string>",
  "created_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.

Body

application/json

Response

200
application/json

Data export successfully initiated

The response is of type object.