GET
/
api
/
v1
/
exports
List Export Jobs
curl --request GET \
  --url https://api.drip.re/api/v1/exports \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "jobId": "<string>",
      "status": "<string>",
      "name": "<string>",
      "modelType": "<string>",
      "format": "<string>",
      "progress": 123,
      "totalRecords": 123,
      "processedRecords": 123,
      "fileName": "<string>",
      "fileSize": 123,
      "downloadCount": 123,
      "error": "<string>",
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123
  }
}

Authorizations

Authorization
string
header
required

API Key

Query Parameters

status
enum<string>

Filter by job status

Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED,
EXPIRED
modelType
enum<string>

Filter by model type

Available options:
currencies,
users,
app-installs
page
number
default:1

Page number

Required range: x >= 1
limit
number
default:10

Items per page

Required range: 1 <= x <= 100
realmId
string

Filter by realm ID

Response

200 - application/json

Default Response

The response is of type object.