- Version 3
- Authentication
- Shipments
- Creating
- Updating
- Retrieving
- Booking
- Canceling
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Recommended Workflow
- Additional Offerings
- Changelog
- Exports and Webhooks
Adds one or more Reference Numbers to a Shipment
POST
/api/v3/shipments/{Id}/referencenumbers
Shipments
Adds reference numbers to the specified Shipment by its id.#
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 create reference number request.
referenceFields
array[object (ReferenceFieldDto) {4}]
required
>= 1 items
type
string
required
>= 1 characters<= 250 characters
value
string
required
>= 1 characters<= 250 characters
printOnBol
boolean
optional
printOnShippingLabel
boolean
optional
Example
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//referencenumbers' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
array of:
type
string
required
>= 1 characters<= 250 characters
value
string
required
>= 1 characters<= 250 characters
printOnBol
boolean
optional
printOnShippingLabel
boolean
optional
Example
[
{
"type": "string",
"value": "string",
"printOnBol": true,
"printOnShippingLabel": true
}
]
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🟠429Too Many Requests
Modified at 2024-09-16 11:42:17