POST
/
api
/
v1
/
exports
Create Export Job
curl --request POST \
  --url https://api.drip.re/api/v1/exports \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "modelType": "currencies",
  "format": "CSV",
  "columns": [
    "<string>"
  ],
  "filters": {},
  "realmId": "<string>"
}'
{
  "id": "<string>",
  "jobId": "<string>",
  "status": "<string>",
  "name": "<string>",
  "modelType": "<string>",
  "format": "<string>",
  "progress": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "expiresAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API Key

Body

application/json

Response

201
application/json

Default Response

The response is of type object.