Create shipping/delivery profile (V1 format - Legacy)
Creates a new Shopify delivery profile with shipping zones and rates using the legacy V1 format. For new integrations, prefer the V2 endpoint which supports more advanced configuration.
Key Features:
- Single Location: Configure shipping for primary store location
- Country-Based Zones: Define shipping zones by country
- Fixed Rates: Set flat shipping costs per zone
- Simple Configuration: Straightforward setup for basic shipping needs
Configuration Structure:
- Profile Name: Unique identifier for the delivery profile
- Country Codes: List of countries in the shipping zone
- Shipping Rate: Fixed price for the zone
- Method Name: Display name for the shipping option
Use Cases:
- Simple country-based flat rate shipping
- Basic free shipping configuration
- Legacy system migrations
- Single-warehouse operations
Migration Note: Consider using the V2 endpoint (/api/external/v2/delivery-profiles/v2/create-shipping-profile) for enhanced features like multi-location support, province targeting, and flexible rate types.
Authentication: Requires API key authentication via X-API-Key header or api_key parameter
curl --request POST \
--url https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile \
--header 'Content-Type: application/json' \
--data '
{
"countryInfos": [
{
"code": "<string>",
"provinceCode": "<string>",
"restOfWorld": true,
"shouldIncludeAllProvince": true
}
],
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"id": 123,
"locationInfos": [
{
"countryInfos": [
{
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"provinceCode": "<string>",
"restOfWorld": true,
"shouldIncludeAllProvince": true
}
],
"locationId": "<string>"
}
],
"name": "<string>",
"restOfWorld": true
}
'import requests
url = "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile"
payload = {
"countryInfos": [
{
"code": "<string>",
"provinceCode": "<string>",
"restOfWorld": True,
"shouldIncludeAllProvince": True
}
],
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"id": 123,
"locationInfos": [
{
"countryInfos": [
{
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"provinceCode": "<string>",
"restOfWorld": True,
"shouldIncludeAllProvince": True
}
],
"locationId": "<string>"
}
],
"name": "<string>",
"restOfWorld": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
countryInfos: [
{
code: '<string>',
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
id: 123,
locationInfos: [
{
countryInfos: [
{
code: '<string>',
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
locationId: '<string>'
}
],
name: '<string>',
restOfWorld: true
})
};
fetch('https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile';
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
countryInfos: [
{
code: '<string>',
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
id: 123,
locationInfos: [
{
countryInfos: [
{
code: '<string>',
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
locationId: '<string>'
}
],
name: '<string>',
restOfWorld: true
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'countryInfos' => [
[
'code' => '<string>',
'provinceCode' => '<string>',
'restOfWorld' => true,
'shouldIncludeAllProvince' => true
]
],
'deliveryMethodInfo' => [
[
'amount' => 123,
'carrierServiceId' => '<string>',
'name' => '<string>',
'priceConditions' => [
[
'amount' => 123,
'deliverCondtion' => '<string>'
]
],
'weightConditions' => [
[
'deliveryCondition' => '<string>',
'weight' => 123,
'weightUnit' => '<string>'
]
]
]
],
'id' => 123,
'locationInfos' => [
[
'countryInfos' => [
[
'code' => '<string>',
'deliveryMethodInfo' => [
[
'amount' => 123,
'carrierServiceId' => '<string>',
'name' => '<string>',
'priceConditions' => [
[
'amount' => 123,
'deliverCondtion' => '<string>'
]
],
'weightConditions' => [
[
'deliveryCondition' => '<string>',
'weight' => 123,
'weightUnit' => '<string>'
]
]
]
],
'provinceCode' => '<string>',
'restOfWorld' => true,
'shouldIncludeAllProvince' => true
]
],
'locationId' => '<string>'
]
],
'name' => '<string>',
'restOfWorld' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile"
payload := strings.NewReader("{\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"id\": 123,\n \"locationInfos\": [\n {\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"locationId\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"restOfWorld\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"id\": 123,\n \"locationInfos\": [\n {\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"locationId\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"restOfWorld\": true\n}"
response = http.request(request)
puts response.read_body{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}Headers
Query Parameters
API Key (Deprecated - Use Header X-API-Key instead)
Body
Delivery profile configuration with country zones and shipping rates (V1 format)
Response
Delivery profile successfully created in Shopify
Shopify delivery profile ID
Shop domain identifier
"my-store.myshopify.com"
Unique identifier of the delivery profile
201
Display name of the delivery profile
"Standard Shipping"
Set of selling plan group IDs associated with this delivery profile
Set of selling plan group IDs associated with this delivery profile
curl --request POST \
--url https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile \
--header 'Content-Type: application/json' \
--data '
{
"countryInfos": [
{
"code": "<string>",
"provinceCode": "<string>",
"restOfWorld": true,
"shouldIncludeAllProvince": true
}
],
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"id": 123,
"locationInfos": [
{
"countryInfos": [
{
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"provinceCode": "<string>",
"restOfWorld": true,
"shouldIncludeAllProvince": true
}
],
"locationId": "<string>"
}
],
"name": "<string>",
"restOfWorld": true
}
'import requests
url = "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile"
payload = {
"countryInfos": [
{
"code": "<string>",
"provinceCode": "<string>",
"restOfWorld": True,
"shouldIncludeAllProvince": True
}
],
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"id": 123,
"locationInfos": [
{
"countryInfos": [
{
"code": "<string>",
"deliveryMethodInfo": [
{
"amount": 123,
"carrierServiceId": "<string>",
"name": "<string>",
"priceConditions": [
{
"amount": 123,
"deliverCondtion": "<string>"
}
],
"weightConditions": [
{
"deliveryCondition": "<string>",
"weight": 123,
"weightUnit": "<string>"
}
]
}
],
"provinceCode": "<string>",
"restOfWorld": True,
"shouldIncludeAllProvince": True
}
],
"locationId": "<string>"
}
],
"name": "<string>",
"restOfWorld": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
countryInfos: [
{
code: '<string>',
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
id: 123,
locationInfos: [
{
countryInfos: [
{
code: '<string>',
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
locationId: '<string>'
}
],
name: '<string>',
restOfWorld: true
})
};
fetch('https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile';
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
countryInfos: [
{
code: '<string>',
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
id: 123,
locationInfos: [
{
countryInfos: [
{
code: '<string>',
deliveryMethodInfo: [
{
amount: 123,
carrierServiceId: '<string>',
name: '<string>',
priceConditions: [{amount: 123, deliverCondtion: '<string>'}],
weightConditions: [{deliveryCondition: '<string>', weight: 123, weightUnit: '<string>'}]
}
],
provinceCode: '<string>',
restOfWorld: true,
shouldIncludeAllProvince: true
}
],
locationId: '<string>'
}
],
name: '<string>',
restOfWorld: true
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'countryInfos' => [
[
'code' => '<string>',
'provinceCode' => '<string>',
'restOfWorld' => true,
'shouldIncludeAllProvince' => true
]
],
'deliveryMethodInfo' => [
[
'amount' => 123,
'carrierServiceId' => '<string>',
'name' => '<string>',
'priceConditions' => [
[
'amount' => 123,
'deliverCondtion' => '<string>'
]
],
'weightConditions' => [
[
'deliveryCondition' => '<string>',
'weight' => 123,
'weightUnit' => '<string>'
]
]
]
],
'id' => 123,
'locationInfos' => [
[
'countryInfos' => [
[
'code' => '<string>',
'deliveryMethodInfo' => [
[
'amount' => 123,
'carrierServiceId' => '<string>',
'name' => '<string>',
'priceConditions' => [
[
'amount' => 123,
'deliverCondtion' => '<string>'
]
],
'weightConditions' => [
[
'deliveryCondition' => '<string>',
'weight' => 123,
'weightUnit' => '<string>'
]
]
]
],
'provinceCode' => '<string>',
'restOfWorld' => true,
'shouldIncludeAllProvince' => true
]
],
'locationId' => '<string>'
]
],
'name' => '<string>',
'restOfWorld' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile"
payload := strings.NewReader("{\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"id\": 123,\n \"locationInfos\": [\n {\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"locationId\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"restOfWorld\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://membership-admin.appstle.com/api/external/v2/delivery-profiles/create-shipping-profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"id\": 123,\n \"locationInfos\": [\n {\n \"countryInfos\": [\n {\n \"code\": \"<string>\",\n \"deliveryMethodInfo\": [\n {\n \"amount\": 123,\n \"carrierServiceId\": \"<string>\",\n \"name\": \"<string>\",\n \"priceConditions\": [\n {\n \"amount\": 123,\n \"deliverCondtion\": \"<string>\"\n }\n ],\n \"weightConditions\": [\n {\n \"deliveryCondition\": \"<string>\",\n \"weight\": 123,\n \"weightUnit\": \"<string>\"\n }\n ]\n }\n ],\n \"provinceCode\": \"<string>\",\n \"restOfWorld\": true,\n \"shouldIncludeAllProvince\": true\n }\n ],\n \"locationId\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"restOfWorld\": true\n}"
response = http.request(request)
puts response.read_body{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}{
"deliveryProfileId": "<string>",
"shop": "my-store.myshopify.com",
"id": 201,
"name": "Standard Shipping",
"sellerGroupIds": [
"<string>"
]
}