Print the Receipt Confirmation PDF for an inwards consignment
Path Parameters
- Type: stringFormat: uuidconsignment
Id required
Body·
application/json
- Type: booleaninclude
Metrics Whether to include metrics in the PDF. Defaults to true.
- Type: booleaninclude
Notes Whether to include notes in the PDF, if any. Defaults to true.
- Type: booleaninclude
Product Summary Whether to include product summary information in the PDF. Defaults to false.
- Type: booleaninclude
Shipping Whether to include shipping information in the PDF, if any. Defaults to true.
- Type: integerenumorientation
Integer numbers.
values- Portrait = 1
- Landscape = 2
- Type: objectprint
Option
Responses
- application/json
Request Example for post/v1/consignments/{consignmentId}/receipt-confirmation-pdf/print
curl https://api.consignlyhq.com/v1/consignments/123e4567-e89b-12d3-a456-426614174000/receipt-confirmation-pdf/print \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"orientation": "enum (Portrait = 1, Landscape = 2)",
"includeShipping": true,
"includeMetrics": true,
"includeNotes": true,
"includeProductSummary": true,
"printOption": {
"printerId": ""
}
}'
{
"printJobId": "123e4567-e89b-12d3-a456-426614174000"
}