POST api/products/{id}/prices
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | 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. |
Request Formats
application/json, text/json
Sample:
{
"id": "56095338-05d8-41ab-8847-50dc8488bce0",
"amount": 1.0,
"currency": "sample string 2",
"productId": "69c8e64b-ade1-49d4-b19e-bae03b5c85ec"
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.