# `api.jobs.freight_providers.rate_quote` > `POST /job/{jobDisplayId}/freightproviders/{optionIndex}/ratequote` — ACPortal **Python** ```python api.jobs.freight_providers.rate_quote(job_display_id: int, option_index: int, *, data: RateQuoteRequest | dict) -> None ``` **CLI** ```bash ab jobs freight_providers rate_quote [--data ...] ``` ``POST /job/{jobDisplayId}/freightproviders/{optionIndex}/ratequote`` Request model: :class:`RateQuoteRequest`. ## Request body — `RateQuoteRequest` | Field | Type | Required | Description | |---|---|---|---| | `ratesKey` | `Optional[str]` | no | Rates key identifier | | `carrierCode` | `Optional[str]` | no | Carrier code | | `carrierAccountId` | `Optional[int]` | no | Carrier account ID | | `active` | `Optional[bool]` | no | Whether rate is active | ## Response No response body. --- [← Back to api.jobs](../jobs.md)