GET
/
api
/
v1
/
exports
/
{jobId}
Get Export Job Status
curl --request GET \
  --url https://api.drip.re/api/v1/exports/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "jobId": "<string>",
  "status": "<string>",
  "name": "<string>",
  "modelType": "<string>",
  "format": "<string>",
  "progress": 123,
  "totalRecords": 123,
  "processedRecords": 123,
  "blobUrl": "<string>",
  "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"
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

jobId
string
required

Export job ID

Response

Default Response

id
string
jobId
string
status
string
name
string | null
modelType
string
format
string
progress
number
totalRecords
number | null
processedRecords
number
blobUrl
string | null
fileName
string | null
fileSize
number | null
downloadCount
number
error
string | null
startedAt
string<date-time> | null
completedAt
string<date-time> | null
expiresAt
string<date-time>
createdAt
string<date-time>
updatedAt
string<date-time>