# Print/get order coupon This endpoint is used to accept an order and, in addition, it returns the PDF file for the order coupon. This endpoint can be used if it is not necessary to develop a custom coupon for the POS. **GET** `/proximity-integration/shipments/{shipment_id}/print_label_pdf` ## Request parameters ### Path - `shipment_id` (string, required) Shipment ID of the order. ## Response parameters This endpoint has no response body. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 401 | 401 | Unauthorized - Access Token is invalid | | 403 | 403 | Forbidden - User cannot access this resource | | 424 | 424 | Not Found - Failed to get some information of the order | | 500 | 500 | Internal server error | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/proximity-integration/shipments/{shipment_id}/print_label_pdf' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ```