POST api/shops/{id}/countries
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
None. |
Body Parameters
ShopCountryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Postage | decimal number |
None. |
|
| Package | decimal number |
None. |
|
| PaymentProvider | string |
None. |
|
| FulfillmentProvider | string |
None. |
|
| EmailProvider | string |
None. |
|
| SmsProvider | string |
None. |
|
| Shop | EntityDto |
None. |
|
| Country | EntityDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "86307a83-af62-4a97-bdc2-845c5a4f60f3",
"postage": 1.0,
"package": 2.0,
"paymentProvider": "sample string 3",
"fulfillmentProvider": "sample string 4",
"emailProvider": "sample string 5",
"smsProvider": "sample string 6",
"shop": {
"id": "11c43180-aff0-4eec-b8df-bfb432fcd8db",
"name": "sample string 2",
"type": "sample string 3"
},
"country": {
"id": "11c43180-aff0-4eec-b8df-bfb432fcd8db",
"name": "sample string 2",
"type": "sample string 3"
}
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.