Skip to main content

Freight Accessorial Automatic Rate Create V1 Ep

POST 

/v1/freight/accessorial/automatic/rate/create

Create Automatic Accessorial Rate

Creates a new rate schedule for an existing automatic accessorial. This allows you to set future rate changes or add a new rate to the accessorial's rate history. Rate changes can be scheduled to take effect on a specific date.

Required Scopes (if.w)

Request

accessorial_id: str
Internal identifier of the automatic accessorial to add a rate to.


effective_from_date: datetime
The date when this rate becomes effective. Will be truncated to the start of day.


rate: float
The rate value to apply. Will be rounded to 5 decimal places.


effective_to_date: datetime | None = None
Optional date when this rate expires. If not specified, the rate remains active until a new rate is scheduled.


Response

Returns the updated automatic accessorial object with all fields as described in the Automatic Accessorial Overview endpoint, including:

id: str
Internal identifier for the accessorial.


name: str
Name of the accessorial.


rate: float | None = None
The current active rate for this accessorial.


next_scheduled_rate: AccessorialRate | None = None
The next scheduled rate change, if any.


rates: list[AccessorialRateRow] = []
Complete history of rates including the newly added rate, with their effective dates and status (active, scheduled, or expired).


All other fields as documented in the Automatic Accessorial Overview response.

Responses

Successful Response

Loading...