Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

POST /v1/public/checkout/{token}/shipping-rates

POST/v1/public/checkout/{token}/shipping-rates
Path parameters
tokenstringrequired
Request body
requiredapplication/json
destination_area_idstringrequired
Responses
200OK
itemsShippingRateOption[] | nullrequired
Show properties
Array of ShippingRateOption
courier_codestringrequired
courier_namestringrequired
courier_service_codestringrequired
courier_service_namestringrequired
descriptionstring
durationstring
priceinteger<int64>required
defaultError
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/public/checkout/string/shipping-rates" \
  -H "Content-Type: application/json" \
  -d '{
  "destination_area_id": "string"
}'
Response
{
  "items": [
    {
      "courier_code": "string",
      "courier_name": "string",
      "courier_service_code": "string",
      "courier_service_name": "string",
      "description": "string",
      "duration": "string",
      "price": 0
    }
  ]
}