Adds one or more Reference Numbers to a Shipment
Adds reference numbers to the specified Shipment by its id.#
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"referenceFields": [
{
"type": "string",
"value": "string",
"printOnBol": true,
"printOnShippingLabel": true
}
]
}
Request Code Samples
curl --location --request POST 'https://ws.integration.banyantechnology.com/api/v3/shipments//referencenumbers' \
--header 'Content-Type: application/json' \
--data-raw '{
"referenceFields": [
{
"type": "string",
"value": "string",
"printOnBol": true,
"printOnShippingLabel": true
}
]
}'
Responses
application/json [
{
"type": "string",
"value": "string",
"printOnBol": true,
"printOnShippingLabel": true
}
]
Modified at 2024-09-16 11:42:17