Read an export job
GET
/v1/exports/{export_id}
const url = 'https://api.vocapable.com/v1/exports/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/exports/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”export_id
required
Export Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
ExportJob
A job as POST /v1/exports and GET /v1/exports/{id} return it.
columns is always the resolved list, never the empty request default: the set a job
was accepted with is frozen at submission so a later change to a resource’s defaults
cannot silently reshape a queued extraction.
object
id
required
Id
string
resource
required
Resource
string
format
Format
string
status
required
JobStatus
Lifecycle shared by the async import and export jobs.
string
filters
Filters
object
key
additional properties
string
columns
Columns
Array<string>
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
Example
{ "resource": "contacts", "format": "csv", "status": "queued"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}