GET
/
v1
/
shipping_rates
curl --request GET \
  --url https://api.withflex.com/v1/shipping_rates \
  --header 'Authorization: Bearer <token>'
{
  "shipping_rates": [
    {
      "shipping_rate_id": "<string>",
      "active": true,
      "display_name": "<string>",
      "amount": 123,
      "metadata": {},
      "created_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

active
boolean | null
limit
integer | null
offset
integer | null

Response

200
application/json

The response is of type object.