Get All Shipping Policies
get
https://api.flxpoint.com/shipping/shipping-policyUse this when you want to pull shipping data through the API.
🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Retrieve all shipping policies
Request
Example request
get
/shipping/shipping-policycurl -X GET "https://api.flxpoint.com/shipping/shipping-policy" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
array[ShippingPolicy]
idintegernamestringrequireddeletedAtstring (date-time)Example response
[
{
"id": 0,
"name": "string",
"deletedAt": "2026-04-20T00:00:00Z"
}
]401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get All Shipping Policies",
"description": "Retrieve all shipping policies",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShippingPolicy"
}
}
}
}
},
"401": {
"description": "Unauthorized"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight