AddManualQuote
POST
/services/api/rest/AddManualQuoteThis function will add a manual quote to a specified shipment. Primary use is when there is some type of unautomated relation with a carrier.
A valid SCAC code is required.
Request
Header Params
Accept
string
required
Example:
application/json
Body Params application/json
No schema defined
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
Responses
AddManualQuote - 200 OK(200)
AddManualQuote - 200 OK
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
ExampleAddManualQuote - 200 OK
{
"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
}
}
Last modified: 2 months ago