GoMake

Gomake API

POST

Get impostripe XML file URL

Gets Imposition XML File URL

/api/jobs/get-impostripe-xml-file-url

Request Body

OutputPathstring(optional) - Output path
orderItemIdstring(required) - Order Item ID (GUID)
productTypestring(optional) - Product type
fullFilePathstring(optional) - Full file path
resultFileNamestring(optional) - Result file name
{
  "OutputPath": "/output/path",
  "orderItemId": "00000000-0000-0000-0000-000000000000",
  "productType": "Book",
  "fullFilePath": "/path/to/file.xml",
  "resultFileName": "result.xml"
}

Responses

200Success
{
  "data": "http://example.com/imposition.xml",
  "success": true
}
400Bad request
500Internal server error

Example Request

curl -X POST \
  https://api.gomake.net/api/jobs/get-impostripe-xml-file-url \
  -H "Content-Type: application/json" \
  -H "X-Client-Id: your-client-id-here" \
  -H "X-Client-Secret: your-client-secret-here" \
  -d '{
  "OutputPath": "/output/path",
  "orderItemId": "00000000-0000-0000-0000-000000000000",
  "productType": "Book",
  "fullFilePath": "/path/to/file.xml",
  "resultFileName": "result.xml"
}'

Note: Replace your-client-id-here and your-client-secret-here with your actual credentials. See the Authentication page for more details.