POST api/admin/products/{productId}/markets
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productId | globally unique identifier |
Required |
Body Parameters
AdminProductMarketCreateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Price | integer |
Required |
|
| Currency | string |
Required |
|
| Country | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Price": 1,
"Currency": "sample string 2",
"Country": "sample string 3"
}
application/xml, text/xml
Sample:
<AdminProductMarketCreateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServices.Models"> <Country>sample string 3</Country> <Currency>sample string 2</Currency> <Price>1</Price> </AdminProductMarketCreateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.