FlxpointAPI Help CenterBeta

Get All Shipping Policies

gethttps://api.flxpoint.com/shipping/shipping-policy

Use 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-policy
curl -X GET "https://api.flxpoint.com/shipping/shipping-policy" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
array[ShippingPolicy]
idinteger
namestringrequired
deletedAtstring (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