/api/v1/data/exports
POST
/api/v1/data/exports
const url = 'https://example.com/api/v1/data/exports';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"resource":"example","parametersJson":"example","format":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/data/exports \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "resource": "example", "parametersJson": "example", "format": "example" }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”object
resource
string
parametersJson
string
format
string
Example generated
{ "resource": "example", "parametersJson": "example", "format": "example"}object
resource
string
parametersJson
string
format
string
Example generated
{ "resource": "example", "parametersJson": "example", "format": "example"}object
resource
string
parametersJson
string
format
string
Example generated
{ "resource": "example", "parametersJson": "example", "format": "example"}Responses
Section titled “ Responses ”OK