POST api/reviews
Request Information
URI Parameters
None.
Body Parameters
CreateReviewDto| Name | Description | Type | Additional information |
|---|---|---|---|
| SellerStoreId | integer |
Required |
|
| InvoiceId | integer |
Required |
|
| ListingId | integer |
None. |
|
| Rating | integer |
Range: inclusive between 1 and 5 |
|
| Comment | string |
String length: inclusive between 0 and 2000 |
Request Formats
application/json, text/json
Sample:
{
"sellerStoreId": 1,
"invoiceId": 2,
"listingId": 1,
"rating": 3,
"comment": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.