View Shipping Label
Get the label document URL for a shipping label.
GET
/api/v1/shipping/{label_id}/viewDescription
Returns merge_path — a URL to download or display the combined label PDF.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| label_id | number | Yes | Shipping label app ID. |
Response
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/shipping/9876/view \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"merge_path": "https://api.unduit.com/show-my-file?path=assets/uploads/shipstationlabels/merge/&filename=label_9876.pdf&is_encrypted=1"
}