Generate Label
POSThttps://api.goodsdelivery.io/v1/label
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
Use this endpoint to generate a shipping label for a specific delivery or return using the ID
.
While labels are not required by default, they are expected. However, when creating deliveries and returns, you may add "WITHOUT_LABEL" as an add-on to indicate that the delivery will not have a label.
The endpoint currently only supports the following formats and sizes:
- Format:
pdf
orhtml
- Size:
- Width:
4
inches - Height:
6
inches
- Width:
If you prefer a different size or format, please don’t hesitate to reach out to us at niels.thomsen@goodsdelivery.io. We're happy to add additional options upon request.
Request
- application/json
Body
required
ID or Short ID of delivery or return
External ID of delivery or return
Unique identifier of the brand
Possible values: [pdf
, html
]
labelSize object
Responses
- 200
- 400
- 401
- 404
If the request is valid, a successful response will contain the requested shipping label.
If the request is invalid, the error response will include an error code and a helpful error message, such as, "The requested delivery does not exist.”
- application/pdf
- text/html
- Schema
Schema
- string binary
- Schema
Schema
- string binary
Bad request
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://api.goodsdelivery.io/v1/label' \
-H 'Content-Type: application/json' \
-H 'Accept: application/pdf' \
-H 'x-api-key: <API_KEY_VALUE>' \
--data-raw '{
"jobId": "string",
"externalId": "string",
"brandId": "string",
"format": "pdf",
"labelSize": {
"width": 0,
"height": 0
}
}'