Creates a new shipping or delivery profile for subscription orders using the V2 request format. This version provides enhanced configuration options for delivery methods, zones, and pricing.
Enhancements in V2:
Key Features:
Authentication: Requires valid X-API-Key header
curl --request POST \
--url https://subscription-admin.appstle.com/api/external/v2/delivery-profiles/v2/create-shipping-profile \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"locationInfos": [
{
"locationId": "<string>",
"countryInfos": [
{
"shouldIncludeAllProvince": true,
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"carrierRate": true,
"deliveryConditionType": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"restOfWorld": true,
"provinceCode": "<string>"
}
]
}
],
"id": "<string>"
}
'{
"shop": "<string>",
"deliveryProfileId": "<string>",
"id": 123,
"sellerGroupIds": [
"<string>"
],
"name": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://developers.appstle.com/llms.txt
Use this file to discover all available pages before exploring further.
API Key (Deprecated - Use Header X-API-Key instead)
curl --request POST \
--url https://subscription-admin.appstle.com/api/external/v2/delivery-profiles/v2/create-shipping-profile \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"locationInfos": [
{
"locationId": "<string>",
"countryInfos": [
{
"shouldIncludeAllProvince": true,
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"carrierRate": true,
"deliveryConditionType": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"restOfWorld": true,
"provinceCode": "<string>"
}
]
}
],
"id": "<string>"
}
'{
"shop": "<string>",
"deliveryProfileId": "<string>",
"id": 123,
"sellerGroupIds": [
"<string>"
],
"name": "<string>"
}