Banyan Technology LIVE Connect™
  1. Retrieving
Banyan Technology LIVE Connect™
  • Version 3
    • Authentication
      • Retrieve a token
    • Shipments
      • Creating
        • Create a Full Shipment
        • Create an EZ Rate Shipment
      • Updating
        • Add Document(s) to a Shipment
        • Update a Shipment
        • Adds one or more Reference Numbers to a Shipment
        • Mark as Exported
      • Retrieving
        • Get a Shipment
          GET
        • Get multiple Shipments
          GET
        • Get Quotes
          GET
        • Get Reference Numbers for a Shipment
          GET
        • Get documents for the specified shipment.
          POST
      • Booking
        • Book a Shipment
        • Unbooks the awarded quote on the specified load.
      • Canceling
        • Cancels a shipment.
    • Invoice
      • Get multiple invoices
      • Mark as Exported
    • Tracking
      • Get tracking statuses
      • Mark as exported.
    • StaticData
      • Accessorials
      • Document Types
      • Equipment Types
      • Package Types
      • Limited Access Types
      • Size UOMs
      • Weight UOMs
      • Pay Types
      • Ship Types
      • Countries
      • Statuses
      • Service Modes
  • Version 2
    • Recommended Workflow
      • Rating
        • ImportForQuote
        • ImportForQuote_Sync
        • GetQuotes
      • Booking/Dispatching
        • BookLoad
      • Tracking
        • GetTrackingStatuses
      • Documents
        • GetDocuments
      • Invoices
        • GetInvoices
        • GetInvoicesWithLoadDetails
    • Additional Offerings
      • Cancelling
        • Cancel a Load
      • Updating
        • UpdateLoad
        • UpdateLoadStatus
        • UpdateShipmentsExport
      • Importing
        • PendingImport
        • ImportForBook
      • Manual Quotes
        • AddManualQuote
      • EZ Rates
        • EzRate
        • EzRate_Sync
      • Waterfall Tendering
        • StartWaterfallTendering
        • CancelWaterfallTendering
      • Unbooking
        • UnBookLoad
      • Additional Dispatching
        • DispatchLoad
      • Load Details
        • GetLoadDetails
        • GetNotes
      • Additional Tracking
        • GetTrackingByLoad
      • Other
        • Normalized Charge Codes
      • SOAP
    • Changelog
  • Exports and Webhooks
    • Standard Load Export - v1
    • Standard Load Export - v2
    • Standard Load Export - v3
    • Push Tracking
  1. Retrieving

Get Quotes

GET
/api/v3/shipments/{Id}/quotes

Retrieve the quotes of a single Shipment by its id.#

This endpoint is useful for retrieving quotes when setting 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

Request Code 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

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
Previous
Get multiple Shipments
Next
Get Reference Numbers for a Shipment
Built with