FlxpointAPI Help CenterBeta

Create Channel Shipping Method

posthttps://api.flxpoint.com/shipping/channel-shipping-methods

Use this when you want to create 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.

Create a channel shipping method

Request

Bodyapplication/json
channelIdintegerrequired
namestringrequired
shippingPolicyIdinteger

Example request

post/shipping/channel-shipping-methods
curl -X POST "https://api.flxpoint.com/shipping/channel-shipping-methods" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
         "channelId": 0,
         "name": "string",
         "shippingPolicyId": 0
       }'
Example body ยท application/json
{
  "channelId": 0,
  "name": "string",
  "shippingPolicyId": 0
}

Responses

200OKapplication/json
idinteger
channelIdinteger
namestring
shippingPolicyIdinteger
deletedAtstring (date-time)
Example response
{
  "id": 0,
  "channelId": 0,
  "name": "string",
  "shippingPolicyId": 0,
  "deletedAt": "2026-04-20T00:00:00Z"
}
400A shipping method with that name already exists

No schema documented for this status.

401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "post": {
    "summary": "Create Channel Shipping Method",
    "description": "Create a channel shipping method",
    "parameters": [],
    "requestBody": {
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/CreateChannelShippingMethodRequest"
          }
        }
      }
    },
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ChannelShippingMethod"
            }
          }
        }
      },
      "400": {
        "description": "A shipping method with that name already exists"
      },
      "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