- Version 3
- Authentication
- Shipments
- Creating
- Updating
- Retrieving
- Booking
- Canceling
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Recommended Workflow
- Additional Offerings
- Changelog
- Exports and Webhooks
Get Quotes
GET
/api/v3/shipments/{Id}/quotes
Shipments
Retrieve the quotes of a single Shipment by its id.#
waitForRates
to false on create requests.Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
Id
integer
required
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 GET 'https://ws.integration.banyantechnology.com/api/v3/shipments//quotes'
Responses
🟢200Success
application/json
Body
array of:
shipmentId
integer <int32>
optional
ratingCompleted
boolean
optional
quotes
array[object (QuoteDto) {21}] | null
optional
quoteId
integer <int32>
optional
carrierName
string
optional
carrierId
integer <int32>
optional
scac
string
optional
thirdPartyName
string | null
optional
thirdPartyScac
string | null
optional
serviceId
string | null
optional
rawPrice
object (QuotePriceDto)
optional
carrierPrice
object (QuotePriceDto)
optional
customerPrice
object (QuotePriceDto)
optional
transitTime
integer <int32>
optional
quoteNumber
string | null
optional
carrierPerson
string | null
optional
carrierNote
string | null
optional
dateStamp
string <date-time>
optional
interline
boolean
optional
accepted
boolean
optional
currencyType
optional
service
string | null
optional
insuranceDetails
optional
accountNumber
string | null
optional
failedQuotes
array[object (BanyanWebServices.Domain.Dtos.Quotes.FailedQuoteDto) {6}] | null
optional
carrierName
string | null
optional
scac
string | null
optional
service
string | null
optional
reasonCode
integer <int32>
optional
reason
string | null
optional
dateStamp
string <date-time>
optional
pendingQuotes
array[object (BanyanWebServices.Domain.Dtos.Quotes.PendingQuoteDto) {6}] | null
optional
dateStamp
string <date-time>
optional
pendingQuoteType
string | null
optional
carrierName
string | null
optional
scac
string | null
optional
service
string | null
optional
quoteId
integer <int32>
optional
notes
array[object (NoteDto) {4}] | null
optional
description
string | null
optional
noteTypeId
integer <int32>
optional
userName
string | null
optional
dateStamp
string <date-time>
optional
Example
[
{
"shipmentId": 0,
"ratingCompleted": true,
"quotes": [
{
"quoteId": 0,
"carrierName": "string",
"carrierId": 0,
"scac": "string",
"thirdPartyName": "string",
"thirdPartyScac": "string",
"serviceId": "string",
"rawPrice": {
"netPrice": 0,
"freightCharge": 0,
"discountAmount": 0,
"fuelSurcharge": 0,
"minimum": 0,
"grossCharge": 0,
"tariff": 0,
"interline": 0,
"accessorialCharges": 0,
"otherCharges": 0,
"charges": [
{
"name": "string",
"amount": 0,
"code": "string"
}
],
"markup": 0
},
"carrierPrice": {
"netPrice": 0,
"freightCharge": 0,
"discountAmount": 0,
"fuelSurcharge": 0,
"minimum": 0,
"grossCharge": 0,
"tariff": 0,
"interline": 0,
"accessorialCharges": 0,
"otherCharges": 0,
"charges": [
{
"name": "string",
"amount": 0,
"code": "string"
}
],
"markup": 0
},
"customerPrice": {
"netPrice": 0,
"freightCharge": 0,
"discountAmount": 0,
"fuelSurcharge": 0,
"minimum": 0,
"grossCharge": 0,
"tariff": 0,
"interline": 0,
"accessorialCharges": 0,
"otherCharges": 0,
"charges": [
{
"name": "string",
"amount": 0,
"code": "string"
}
],
"markup": 0
},
"transitTime": 0,
"quoteNumber": "string",
"carrierPerson": "string",
"carrierNote": "string",
"dateStamp": "2019-08-24T14:15:22Z",
"interline": true,
"accepted": true,
"currencyType": "USDollar",
"service": "string",
"insuranceDetails": {
"price": 0,
"confirmation": "string",
"insuranceNote": "string",
"expirationDate": "2019-08-24T14:15:22Z",
"deductible": "string",
"termsAndConditions": "string",
"vendorCode": "string"
},
"accountNumber": "string"
}
],
"failedQuotes": [
{
"carrierName": "string",
"scac": "string",
"service": "string",
"reasonCode": 0,
"reason": "string",
"dateStamp": "2019-08-24T14:15:22Z"
}
],
"pendingQuotes": [
{
"dateStamp": "2019-08-24T14:15:22Z",
"pendingQuoteType": "string",
"carrierName": "string",
"scac": "string",
"service": "string",
"quoteId": 0
}
],
"notes": [
{
"description": "string",
"noteTypeId": 0,
"userName": "string",
"dateStamp": "2019-08-24T14:15:22Z"
}
]
}
]
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🟠429Too Many Requests
Modified at 2024-09-16 11:42:17