Create Channel Shipping Method
post
https://api.flxpoint.com/shipping/channel-shipping-methodsUse 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
Body
application/jsonchannelIdintegerrequirednamestringrequiredshippingPolicyIdintegerExample request
post
/shipping/channel-shipping-methodscurl -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
idintegerchannelIdintegernamestringshippingPolicyIdintegerdeletedAtstring (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