### Method: `connector_get_shipping_cost_profiles`
#### Request
```json
{
"connector": "shopify"
}
```
#### Response
```json
[
{
"id": "",
"Name": "Default profile",
"SettingsType": "noShippingCost", // noShippingCost, costEqual, costDifferent
"PriceListType": "weight", // weight, price, item, ""
"isDefault": true,
"products": [
{
"ID": "some-id",
"Name": "",
"Asin": "",
"SKU": "",
"Image": ""
}
]
}
]
```
-------
### Method: `connector_get_shipping_cost_profile`
#### Request
```json
{
"id": "",
"connector": "shopify"
}
```
#### Response
```json
{
"id": "",
"Name": "Default profile",
"SettingsType": "noShippingCost", // noShippingCost, costEqual, costDifferent
"PriceListType": "weight", // weight, price, item, ""
"isDefault": true,
"isCustom": false,
"unit": "POUND", // KILOGRAM, OUNCE, POUND
"currency": "USD",
"zones": [
{
"id": "some id",
"name": "",
"type": "", // rest, domestic, other...
"bounds": [
{
"bound": 3,
"value": ""
}
]
}
],
"products": [
{
"ID": "some-id",
"Name": "",
"Asin": "",
"SKU": "",
"Image": ""
}
]
}
```
-------
### Method: `connector_set_shipping_cost_profile`
#### Request
```json
{
"connector": "shopify",
"data": "
{
\"id\": \"\",
\"Name\": \"Default profile\",
\"SettingsType\": \"noShippingCost\",
\"PriceListType\": \"weight\",
\"isDefault\": true,
\"isCustom\": false,
\"unit\": \"POUND\",
\"currency\": \"USD\",
\"zones\": [
{
\"id\": \"some id\",
\"bounds\": [
{
\"bound\": 3,
\"value\": \"\"
}
]
}
],
\"products\": [
\"some-id\",
\"some-id\"
]
}
"
}
```
#### Response
response - success
-------
### Method: `connector_delete_shipping_cost_profile`
#### Request
```json
{
"ID": "",
"connector": "shopify"
}
```
#### Response
response - success
-------
### Method: `connector_set_product_shipping_cost_profile`
#### Request
```json
{
"productID": "",
"profileID": "",
"connector": "shopify"
}
```
#### Response
response - success
-------
### Method: `connector_get_shipping_cost_zone`
#### Request
```json
{
"id": "",
"connector": "shopify"
}
```
#### Response
```json
{
"ID": "",
"Name": "",
"countries_codes": "[\"RS\", \"AE\"]"
}
```
-------
### Method: `connector_set_shipping_cost_zone`
#### Request
```json
{
"connector": "shopify",
"ID": "", // empty if create
"Name": "",
"countries_codes": "[\"RS\", \"AE\"]"
}
```
#### Response
```json
{
"ID": "",
"Name": ""
}
```
-------
### Method: `connector_delete_shipping_cost_zone`
#### Request
```json
{
"ID": "",
"connector": "shopify"
}
```
#### Response
response - success