- Version 3
- Authentication
- Shipments
- Creating
- Updating
- Retrieving
- Booking
- Canceling
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Recommended Workflow
- Additional Offerings
- Changelog
- Exports and Webhooks
Get documents for the specified shipment.
POST
/api/v3/shipments/{Id}/GetDocuments
Shipments
Get documents related to the specified shipment.#
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
Id
integer
required
Body Params application/json
The get documents request.
documentTypes
array[string]
required
>= 1 items
Allowed values:
Banyan_BOLShipping_LabelCarrier_BOLCarrier_PODCarrier_LabelAPARCarrier_Weight
shippingLabelFormat
enum<string>
optional
Allowed values:
ZPLEPLPDF
labelHasDockTabs
boolean
optional
convertPdfToImage
boolean
optional
imageFormat
enum<string>
optional
Allowed values:
JPGPNG
Example
{
"documentTypes": [
"banyan_bol"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://ws.integration.banyantechnology.com/api/v3/shipments//GetDocuments' \
--header 'Content-Type: application/json' \
--data-raw '{
"documentTypes": [
"banyan_bol"
]
}'
Responses
🟢200Success
application/json
Body
array of:
documentType
enum<string>
optional
Allowed values:
Banyan_BOLShipping_LabelCarrier_BOLCarrier_PODCarrier_LabelAPARCarrier_Weight
base64Documents
array[string] | null
optional
zplDocuments
array[string] | null
optional
success
boolean
optional
error
object (BanyanWebServices.Domain.Dtos.ErrorWrapperDto)
optional
message
string | null
optional
Example
[
{
"documentType": "Banyan_BOL",
"base64Documents": [
"string"
],
"zplDocuments": [
"string"
],
"success": true,
"error": {
"message": "string"
}
}
]
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429Too Many Requests
Modified at 2024-09-16 11:42:17