POST api/review
Request Information
URI Parameters
None.
Body Parameters
ReviewUpload| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| CardId | integer |
None. |
|
| Name | string |
None. |
|
| Details | string |
None. |
|
| Country | string |
None. |
|
| Date | date |
None. |
|
| IsActive | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"CardId": 2,
"Name": "sample string 3",
"Details": "sample string 4",
"Country": "sample string 5",
"Date": "2025-10-29T11:31:54.8789955+00:00",
"IsActive": 7
}
application/xml, text/xml
Sample:
<ReviewUpload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <CardId>2</CardId> <Country>sample string 5</Country> <CustomerId>1</CustomerId> <Date>2025-10-29T11:31:54.8789955+00:00</Date> <Details>sample string 4</Details> <IsActive>7</IsActive> <Name>sample string 3</Name> </ReviewUpload>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.