Run Custom Export
POST
/Export/{id}
Exports
id
of the export in the endpoint path. All associated parameters should be provided in object format in the body. Use the Get available exports endpoint to determine the id
and which parameters are expected.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/Export/' \
--header 'Content-Type: application/json' \
--data-raw '{
"Page Index": 1,
"Results Per Page": 10,
"Product ID": "PROD234",
"Vendor ID": "VEND949"
}'
Response Response Example
200 - Sample Export
[
{
"Vendor Name": "A la carte",
"Product Name": "Apple",
"Quantity Purchased": 10
},
{
"Vendor Name": "A la carte",
"Product Name": "Orange",
"Quantity Purchased": 45
}
]
Request
Path Params
id
stringÂ
required
Body Params application/json
Responses
Modified at 2025-05-16 12:53:06