Get Accessorial
GET v2/accessorials
Returns list of Accessorials.
Body Object
None
Example Body
None
Response
Returns an array of LTL Accessorials and TL Accessorials.
Response Properties
Name
Type
Description
accessorialId
int
Accessorial identifier.
name
string
Accessorial name.
costAmount
int
Cost amount.
unitType
string
Unit used to calculate cost
customerId
int
Customer ID
loadType
string
Denotes LTL or TL
defaultContract
bool
Denotes default contract
quoteVisible
bool
Denotes visibility
Example Response
{
"ltlAccessorials": [
{
"accessorialId": 52,
"name": "Reconsignment or Diversion",
"costAmount": 250,
"unitType": "Flat Fee",
"customerId": 0,
"loadType": "ltl",
"defaultContract": true,
"quoteVisible": false
},
{
"accessorialId": 5,
"name": "Pallet Exchange",
"costAmount": 10,
"unitType": "Pallets",
"customerId": 0,
"loadType": "ltl",
"defaultContract": true,
"quoteVisible": false
}
],
"tlAccessorials": [
{
"accessorialId": 7,
"name": "Truck Order Not Used",
"costAmount": 250,
"unitType": "Flat Fee",
"customerId": 0,
"loadType": "tl",
"defaultContract": true,
"quoteVisible": false
},
{
"accessorialId": 28,
"name": "Weekend / Holiday",
"costAmount": 250,
"unitType": "Flat Fee",
"customerId": 0,
"loadType": "tl",
"defaultContract": true,
"quoteVisible": false
}
]
}
Last updated