# Create Rate Request This endpoint is used to create rate requests. It requires specifying the Intermodal Region ID and the ID of the destination city. Optionally, you can provide a specific ZIP code and additional memo notes. Endpoint: POST /rateRequests Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `intermodal_region_id` (integer, required) The id of Intermodal Region Example: 94 - `to_city_id` (integer, required) The id of To City Example: 115 - `to_zipcode` (string) Specific Zipcode Example: "91803" - `memo` (string) Memo ## Response 201 fields (application/json): - `data` (object) - `data.id` (integer) Unique identifier for the entry Example: 1470 - `data.to_zipcode` (string,null) Destination ZIP code Example: "91803" - `data.status` (string,null) Status of the entry Example: "created" - `data.rejected_reason` (string,null) Reason for rejection - `data.created_at` (string) Date and time when the entry was created Example: "2022-12-01 13:58:25" - `data.memo` (string,null) Additional notes or comments - `data.to_city_id` (integer) ID of the destination city Example: 115 - `data.intermodal_region_id` (integer) ID of the intermodal region Example: 94 - `data.intermodal_region` (string) Name of the intermodal region Example: "Los Angeles/Long Beach - CA" - `data.to_city` (string) Destination city Example: "Ontario, CA, USA" - `data.remaining_limit` (integer) Remaining limit Example: 100 ## Response 400 fields (application/json): - `error` (string) Error type identifier Enum: "VALIDATION" - `errors` (object) Validation errors by field Example: {"port_of_discharge_eta":["This is a rush order. Please contact our sales."],"mbl_number":["The mbl number has already been taken."],"port_of_discharge_id":["The selected port of discharge id is invalid."]} - `message` (string) Error message Example: "Failed Validation" ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated"