FlxpointAPI Help CenterBeta

Update Channel Shipping Method

puthttps://api.flxpoint.com/shipping/channel-shipping-methods/{id}

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

Update a channel shipping method

Request

Bodyapplication/json
namestringrequired
shippingPolicyIdinteger

Example request

put/shipping/channel-shipping-methods/{id}
curl -X PUT "https://api.flxpoint.com/shipping/channel-shipping-methods/{id}" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
         "name": "string",
         "shippingPolicyId": 0
       }'
Example body ยท application/json
{
  "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.

404Channel shipping method with provided id doesn't exist

No schema documented for this status.

OpenAPI fragment
{
  "put": {
    "summary": "Update Channel Shipping Method",
    "description": "Update a channel shipping method",
    "parameters": [],
    "requestBody": {
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/UpdateChannelShippingMethodRequest"
          }
        }
      }
    },
    "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"
      },
      "404": {
        "description": "Channel shipping method with provided id doesn't exist"
      }
    }
  }
}
Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight