Return Label API
Generate a return label independent of shipment label generation with Shipium's Return Label API.
Get started
This document provides guidance for using the Return Label API. The Carrier and Method Selection & Shipment Labels document provides more information about setting up your organization's account to use the Carrier and Method Selection service and print labels. The Fulfillment Contexts document includes guidance on configuring a returns type of fulfillment context to reference in your Return Label API calls.
The Return Label API is very closely related to the carrier and method selection and shipment label APIs, so you will find that many of the structures and components overlap with those.
Generate a return label
The Shipium Return Label API assumes you're using one of the authentication mechanisms detailed in our authentication documentation.
Authentication for API CallsIn the cURL example on this page, the environment variable
AUTHSTRINGis used to handle authorization. The recipe below shows how to set it correctly for both API Key and OAuth users.
The following table provides required and optional fields for calling the Return Label API. You can find additional support in the Return Label API Reference.
Request field | Required/Optional | Field properties | Description |
|---|---|---|---|
| Required | String | Currency in which all the rates for shipping carrier selection costs will be calculated |
| Optional | Boolean | When |
| Optional | Boolean | When |
| Optional | String | Currency in which all the rates for shipping carrier selection costs will be calculated |
| Required | String enumeration
| List of formats in which to generate the package label |
| Conditional | Object |
|
| Conditional | String
|
|
| Conditional | String
|
|
| Optional | Boolean | When |
| Optional | Boolean | When |
| Optional | String | A short description (under 35 characters) of the package contents being returned that is passed on to the carrier; required for return shipments only |
| Optional | String | List of formats in which to generate the package label |
| Optional, but some carriers require the destination address type | String enumeration
| The type of location for the destination address |
| Optional | String | The company name for the destination address |
| Optional | String | The name of the contact for the destination address |
| Optional | String | The first destination address line |
| Optional | String | The second destination address line |
| Optional | String | The name of the city for the destination address |
| Optional | String | The 2-letter postal abbreviation of the state for the destination address |
| Required | String | A country-code-appropriate postal code for the destination address |
| Required | String | The ISO 3166-1 country code for the destination address |
| Optional | String | The phone number of the contact for the destination address |
| Optional | String | The phone number country code of the contact for the destination address |
| Optional | String enumeration
| The type of location for the origin address |
| Optional | String | The name of the contact for the origin address |
| Optional | String | The company name for the origin address |
| Optional | String | The first origin address line |
| Optional | String | The second origin address line |
| Optional | String | The name of the city for the origin address |
| Optional | String | The 2-letter postal abbreviation of the state for the origin address |
| Required | String | A country-code-appropriate postal code for the origin address |
| Required | String | The ISO 3166-1 country code for the origin address |
| Optional | String | The phone number of the contact for the origin address |
| Optional | String | The phone number country code of the contact for the origin address |
| Conditional | String enumeration
| The material type of the packaging. REQUIRED when |
| Optional | String | A custom name for the packaging |
| Conditional | String | The unique identifier for a pre-configured packaging type defined in the Shipium Console. When provided, the system uses the pre-configured packaging properties (dimensions, material, weight) associated with this ID. When this value is present, |
| Conditional | String enumeration
| The unit in which linear dimensions are provided
|
| Conditional | Number ($float) | The longest linear dimension (i.e., the longest side of a box or envelope)
|
| Conditional | Number ($float) | The second longest linear dimension (i.e., the second longest side of a box or envelope)
|
| Conditional | Number ($float) | The least long linear dimension (i.e., the shortest side of a box or envelope).
|
| Optional | String enumeration
| The unit in which weight values are provided |
| Optional | Number ($float) | The value of the weight |
| Required | Number ($float) | The value of the weight of the empty packaging |
| Required | String enumeration
| The unit in which weight values are provided |
| Optional, but required for international shipments and shipments containing hazardous materials | String | A product ID for the product being checked (ISBN, UPC, etc.) |
| Optional, but required for international shipments and shipments containing hazardous materials | Integer ($int32) | The number of units of the product |
| Optional, but required for international shipments and shipments containing hazardous materials | String
| A list of properties that may affect the shipping of the product |
| Optional | String | A Shipium identification use to represent the group of delivery estimates purchased |
| Optional | String | A unique identifier provided by your organization representing this order |
| Optional | Boolean | If true, indicates that the item is hazardous materials; the default value is false. For details on hazmat information to include, you can refer to Hazardous Materials. |
| Optional | String | An identification provided by your organization; limited to 30 alphanumeric characters; this unique ID is case sensitive. |
| Optional | String | When present, this is used to limit carrier selection to carrier accounts that contain a matching fulfillment context for the returns. |
| Optional | String ($date-time) | ISO-8601 formatted date of the return request, if not set, the current date-time will be used. |
| Required | String | A short description (under 35 characters) of the package contents being returned that is passed on to the carrier |
| Optional | String | An optional string identifier passed to the carrier; you may include up to 5 identifiers, appending numbers 2-5 to |
Example cURL request
The request looks very similar to a shipment label request. You pass information about the origin address and destination address, as shown in the cURL request below:
curl --request POST \
--url <<api_url>>/api/v1/deliveryexperience/customerreturn/label
--header 'accept: application/json' \
--header $AUTHSTRING \
--header 'content-type: application/json' \
--data 'INSERT REQUEST BODY FROM BELOW'Example request body
The following example includes partnerReturnRequestId, customLabelEntries, and orderItemQuantities. All these are optional and can be omitted. You can find more details about custom label entries in Label Customization. The table describing request fields in the section above and the Return Label API Reference provide details about information to include in the API request.
{
"currencyCode": "usd",
"generateLabel": true,
"labelParameters": {
"testMode": true,
"currencyCode": "usd",
"labelFormats": [
"zpl"
],
"eligibleForManifest": true,
"includeLabelImagesInResponse": true,
"contentDescription": "General Merchandise",
"customLabelEntries": {
"order-number": "CUSTOM_ORDER_NUMBER"
}
},
"destinationAddress": {
"addressType": "commercial",
"company": "Shipium Warehouse",
"name": "Attn: RETURNS",
"street1": "1234 Warehouse Way",
"street2": "Suite 101",
"city": "Reno",
"state": "NV",
"postalCode": "89521",
"countryCode": "US"
},
"originAddress": {
"addressType": "residential",
"name": "Wile E. Coyote",
"company": "ACME",
"street1": "123 Warehouse St.",
"street2": "Suite 42",
"city": "Albuquerque",
"state": "NM",
"postalCode": "87121",
"countryCode": "US"
},
"packagingType": {
"packagingMaterial": "box",
"packagingSizeName": "5x5x5 box",
"linearDimensions": {
"linearUnit": "in",
"length": 5,
"width": 5,
"height": 5
},
"packagingWeight": {
"weightUnit": "lb",
"weight": 2
}
},
"totalWeight": {
"weight": 50,
"weightUnit": "lb"
},
"orderItemQuantities": [
{
"productId": "MM-01-001",
"quantity": 1
},
{
"productId": "GR-08-001",
"quantity": 1,
"productDetails": [
"ormd"
]
}
],
"customerReturnParams": {
"partnerReturnRequestId": "customReturnRequestId",
"fulfillmentContext": "8ad8e1a8-0656-4d18-afe8-d24fe3fc5f94",
"returnRequestDateTime": "2021-01-11T00:00:00+00:00",
"contentDescription": "General Merchandise"
},
"referenceIdentifier": "ReturnLane1",
"referenceIdentifier2": "LVO-34"
}Example response body
The return label response is almost identical to the response returned by the shipment label, though with some differences as carrier costing does not occur for return labels.
{
"carrier": "ups",
"carrierServiceName": "UPS Returns Service",
"carrierShipmentId": "1Z204E380338943508",
"carrierTrackingId": "1Z204E380338943508",
"documents": [
{
"labelExpiration": "2020-11-19T21:11:42.628Z",
"labelFormat": "zpl",
"labelImage": {
"imageEncoding": "base64",
"imageContents": "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACPTkDJAAACJElEQVRYCe1Vz0sbURCe2XWbiNZKRaxgEipIKYVSqFR7SuJRCipSDz1JD1Io4j/goe2l9xYPxYu9FLoRz/aUaCmUYKFee4hiKSg0ovVHY0x2nCe85e3GmM2Kl3bf5c3Mm/fN976ZZQGCFSgQKPC/K4AXEeDu6qemP9uHRi2M9eTITrUcXwS6l+Z7SmSZRHCvGrAzjnnQ6PnP+NhHZxxAcwe8+MdkvfFeXCBSGxLMda+Y19z4De6A8GPp1DQBdLVfvTm5s5eLFRFeslStMhcRZwHxrfTV3SJ6B0RdakzYTDhMh3CLzax6VkFAsDzeh1d8A3/v595zoUdsP2FC9tLDV56u9Q9t2QHFiKbNAzVXOQIq6xWKVxDI9Y7tRjOpKS7c+SBO2W9f6JdVQn492QpQoTgYWzKPVHBpM+8W8Vyvy9cQ8is3uUSH1yIyTwf94Xpy9Kv0xe6Q5AWRw1cTL8u2FYik53tZ5kVEWNhIPJ6IZFIz7D8DcpIURBoaQzfUGYh+Nu9TCVZqkTxXAUTrNhdsI6B+AYRAibOK1ypS77k9hH1x+JBd1vIhw1oVIHo4NEB/i0nSKttSKhRfRzJmSBajMlyXdr273YJ6Ll7aEHomwf3xnKskol62FPfU9DX1/JmftskNdp7Pw12gsvHDneOLgKFpkwz43Q1W3cc8IYyf9Vf0NQOy0J202XwAhj3IMu7e1xLDu/z/8NU2N1bgBwoECvx7CpwAEhquciKZh7kAAAAASUVORK5CYII="
},
"labelProperties": {
"dpi": 203,
"height": 6,
"labelOrientation": "rotate_0",
"linearUnits": "in",
"width": 4
},
"labelUrl": "https://api.shipium.com/labels/1a486afc-2ffc-4c37-928f-8d6aa014b35b.zpl"
}
],
"params": {
"partnerReturnRequestId": "customReturnRequestId",
"fulfillmentContext": "8ad8e1a8-0656-4d18-afe8-d24fe3fc5f94",
"returnRequestDateTime": "2021-01-11T00:00:00+00:00",
"contentDescription": "General Merchandise"
},
"packagingType": {
"packagingMaterial": "box",
"packagingSizeName": "5x5x5 box",
"linearDimensions": {
"linearUnit": "in",
"length": 5,
"width": 5,
"height": 5
},
"packagingWeight": {
"weightUnit": "lb",
"weight": 2.0
},
"totalWeight": {
"weight": 50,
"weightUnit": "lb"
},
"serviceMethodName": "UPS Returns Service",
"shipiumCustomerReturnLabelId": "4c6af31c-6f1d-4b20-a16f-a9110135e442",
"status": "success",
"statusDetails": "success",
"referenceIdentifier": "ReturnLane1",
"referenceIdentifier2": "LVO-34"
}Example request body for a printerless label document
This example demonstrates requesting a QR code as the printerless label document for a Canada Post return.
{
"currencyCode": "usd",
"generateLabel": true,
"labelParameters": {
"testMode": true,
"currencyCode": "usd",
"labelFormats": [
"printerless"
],
"printerlessParameters": {
"type": "qrcode",
"imageFormat": "jpeg"
},
"eligibleForManifest": true,
"includeLabelImagesInResponse": true,
"contentDescription": "General Merchandise"
},
"destinationAddress": {
"addressType": "commercial",
"company": "Shipium Warehouse",
"name": "Attn: RETURNS",
"street1": "1234 Warehouse Way",
"city": "Reno",
"state": "NV",
"postalCode": "89521",
"countryCode": "US"
},
"originAddress": {
"addressType": "residential",
"name": "Wile E. Coyote",
"street1": "123 Warehouse St.",
"city": "Albuquerque",
"state": "NM",
"postalCode": "87121",
"countryCode": "US"
},
"packagingType": {
"packagingMaterial": "box",
"linearDimensions": {
"linearUnit": "in",
"length": 5,
"width": 5,
"height": 5
}
},
"totalWeight": {
"weight": 50,
"weightUnit": "lb"
},
"customerReturnParams": {
"fulfillmentContext": "8ad8e1a8-0656-4d18-afe8-d24fe3fc5f94"
}
}Example response with a printerless label document
When you request a printerless label format, the documents array will include an additional element with labelFormat set to "printerless" and a printerlessInfo object containing metadata about the QR code. The printerlessInfo object includes the QR code type and the URL encoded within it, allowing you to use the URL independently if needed.
{
"carrier": "canadapost",
"carrierServiceName": "Canada Post Returns",
"documents": [
{
"labelFormat": "printerless",
"labelImage": {
"imageEncoding": "base64",
"imageContents": "A534453...",
"imageFormat": "jpeg"
},
"printerlessInfo": {
"type": "qrcode",
"valueRepresented": "https://ct.soa-gw.canadapost.ca/esto/app/bypass/label?key=d99978d9569c477cb4b68f071cac4806"
}
}
],
"shipiumCustomerReturnLabelId": "4c6af31c-6f1d-4b20-a16f-a9110135e442",
"status": "success"
}Retrieve previously created labels
You can retrieve previously created labels by calling the same API endpoint you used to generate the label, using the GET request type and passing the returnLabelId you previously received in your response body.
Here's the cURL example call for retrieving a return label. You'll replace the returnLabelId value with the one you received during label generation.
curl --request GET \
--url <<api_url>/api/v1/deliveryexperience/customerreturn/label/{returnLabelId}
--header 'accept: application/json' \
--header $AUTHSTRING \
--header 'content-type: application/json'
More information on the API responsesAs with all Shipium API responses, this API follows the API Response Codes standards unless otherwise specified.
Resources
Your Shipium team member is available to help along the way. However, you might find these resources helpful:
Updated 13 days ago
