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": "f6e8458a-219e-451f-a4e8-3172fc41001f",
"amount": 1.0,
"currency": "sample string 2",
"productId": "78565c5c-4be8-4f6b-9dfc-616413b091b9",
"symbol": "sample string 3",
"isSymbolBefore": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.