Export Job Result
Download a job result payload as JSON.
GET
/v2/jobs/{job_id}/exportExport Job Result
Export the resolved job result payload as a downloadable JSON file.
cURL
curl -G https://api.omtx.ai/v2/jobs/job_123abc/export \
-H "x-api-key: YOUR_API_KEY" \
--data-urlencode "format=json" \
-o job_123abc_export.jsonResponse
{
"result_key": "result_value"
}- Only `format=json` is currently supported.
- If `response_payload.result` exists, the export unwraps that nested result object.
- The response is served as a downloadable JSON file with `Content-Disposition`.