v1
latestOpenAPI 3.1.02026-07-2684271522.2 KBExports
Create Export
Creates an export and starts generating the requested CSV file asynchronously. The export is returned with status created and is then processed in the background; poll it until its status is completed before requesting a download URL.
post/v1/exports
Request body
Example request
{
"export": {
"description": "Premium SPF 50 mineral sunscreen",
"metadata": {
"order_id": "8842",
"channel": "shopify"
},
"type": "product"
}
}Response
An envelope wrapping a single export object.
Example response
{
"export": {
"export_id": "fxprt_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"description": "Premium SPF 50 mineral sunscreen",
"type": "product",
"status": "created",
"created_at": "2026-06-15T14:30:00Z",
"started_at": "2026-06-15T14:30:00Z",
"completed_at": "2026-06-15T14:30:00Z",
"metadata": {
"order_id": "8842",
"channel": "shopify"
},
"test_mode": false
}
}