- Version 3
- Authentication
- Shipments
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Exports and Webhooks
AddManualQuote
POST
/services/api/rest/AddManualQuote
A valid SCAC code is required.
Request
Header Params
Accept
string
required
Example:
application/json
Body Params application/json
AuthenticationData
object (Authentication Data)
required
Username
string
required
Password
string
required
ClientRefNum
string | null
optional
LoadId
integer
required
QuoteInformation
object (ManualQuote)
required
quoteID
integer | null
optional
scac
string
required
transitTime
integer | null
optional
totalCharge
number <float>
required
freightCharge
number <float> | null
optional
fuelSurcharge
number <float> | null
optional
discountPercentage
number <float> | null
optional
discountAmount
number <float> | null
optional
accessorialFees
number <float> | null
optional
minumum
number <float> | null
optional
grossCharge
number <float> | null
optional
otherCharges
number <float> | null
optional
tariff
string | null
optional
interline
boolean
required
miles
integer | null
optional
quoteNumber
string | null
optional
accountNumber
string | null
optional
carrierPrice
number <float> | null
optional
customerPrice
number <float> | null
optional
note
string | null
optional
currencyID
enum<string>
required
Allowed values:
US_DollarCanadian_DollarMexican_Peso
thirdPartySCAC
string | null
optional
carrierName
string | null
optional
serviceLevel
string | null
optional
Example
{
"AuthenticationData": {
"Username": "",
"Password": "",
"ClientRefNum": ""
},
"LoadID": "",
"QuoteInformation": {
"QuoteID": null,
"Scac": "ABCD",
"TransitTime": null,
"TotalCharge": "300.0",
"FreightCharge": null,
"FuelSurcharge": null,
"DiscountPercentage": null,
"DiscountAmount": null,
"AccessorialFees": null,
"Minumum": null,
"GrossCharge": null,
"OtherCharge": null,
"Tariff": "None",
"Interline": "true",
"Miles": null,
"QuoteNumber": "4321",
"AccountNumber": null,
"CarrierPrice": "325.0",
"CustomerPrice": "325.0",
"Note": "Notes go here",
"CurrencyID": "0"
}
}
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/services/api/rest/AddManualQuote' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"AuthenticationData":{
"Username":"",
"Password":"",
"ClientRefNum":""
},
"LoadID":"",
"QuoteInformation":{
"QuoteID":null,
"Scac":"ABCD",
"TransitTime":null,
"TotalCharge":"300.0",
"FreightCharge":null,
"FuelSurcharge":null,
"DiscountPercentage":null,
"DiscountAmount":null,
"AccessorialFees":null,
"Minumum":null,
"GrossCharge":null,
"OtherCharge":null,
"Tariff":"None",
"Interline":"true",
"Miles":null,
"QuoteNumber":"4321",
"AccountNumber":null,
"CarrierPrice":"325.0",
"CustomerPrice":"325.0",
"Note":"Notes go here",
"CurrencyID":"0"
}
}'
Responses
🟢200AddManualQuote - 200 OK
application/json
Body
Success
boolean
required
Error
object (ErrorObject)
optional
Message
string
required
LoadId
integer
required
QuoteInformation
object (ManualQuote)
required
quoteID
integer | null
optional
scac
string
required
transitTime
integer | null
optional
totalCharge
number <float>
required
freightCharge
number <float> | null
optional
fuelSurcharge
number <float> | null
optional
discountPercentage
number <float> | null
optional
discountAmount
number <float> | null
optional
accessorialFees
number <float> | null
optional
minumum
number <float> | null
optional
grossCharge
number <float> | null
optional
otherCharges
number <float> | null
optional
tariff
string | null
optional
interline
boolean
required
miles
integer | null
optional
quoteNumber
string | null
optional
accountNumber
string | null
optional
carrierPrice
number <float> | null
optional
customerPrice
number <float> | null
optional
note
string | null
optional
currencyID
enum<string>
required
Allowed values:
US_DollarCanadian_DollarMexican_Peso
thirdPartySCAC
string | null
optional
carrierName
string | null
optional
serviceLevel
string | null
optional
Example
{
"Success": true,
"Error": null,
"LoadID": 12345678,
"QuoteInformation": {
"QuoteID": 123456789,
"SCAC": "ABCD",
"TransitTime": 4,
"TotalCharge": 300,
"FreightCharge": null,
"FuelSurcharge": null,
"DiscountPercentage": 0,
"DiscountAmount": 0,
"AccessorialFees": null,
"Minumum": null,
"GrossCharge": null,
"OtherCharges": null,
"Tariff": "None",
"Interline": true,
"Miles": null,
"QuoteNumber": "4321",
"AccountNumber": null,
"CarrierPrice": 325,
"CustomerPrice": 325,
"Note": "Notes go here",
"CurrencyID": 0
}
}
Modified at 2024-09-16 11:42:17