POST api/products/{id}/prices/{type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
|
| type | string |
Required |
Body Parameters
PriceDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Amount | decimal number |
None. |
|
| Currency | string |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| Symbol | string |
None. |
|
| IsSymbolBefore | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "803b0bc9-b8f6-4a7d-9943-bb3ab1c31f67",
"amount": 1.0,
"currency": "sample string 2",
"productId": "9b5697b8-bef5-4f4b-bd83-b0b15572a066",
"symbol": "sample string 3",
"isSymbolBefore": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.