POST api/Services/StoreRating

Request Information

URI Parameters

None.

Body Parameters

Tbl_StoreReviews
NameDescriptionTypeAdditional information
storelike_id

integer

None.

StoreId

integer

None.

UserId

integer

None.

Name

string

None.

MobileNo

string

None.

Address

string

None.

CreateDate

date

None.

st_like

boolean

None.

st_dislike

boolean

None.

st_comment

string

None.

st_rating

integer

None.

ReplyId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "storelike_id": 1,
  "StoreId": 2,
  "UserId": 1,
  "Name": "sample string 3",
  "MobileNo": "sample string 4",
  "Address": "sample string 5",
  "CreateDate": "2024-12-23T04:15:20.5371207+05:30",
  "st_like": true,
  "st_dislike": true,
  "st_comment": "sample string 9",
  "st_rating": 1,
  "ReplyId": 1
}

text/html, multipart/form-data

Sample:
{"storelike_id":1,"StoreId":2,"UserId":1,"Name":"sample string 3","MobileNo":"sample string 4","Address":"sample string 5","CreateDate":"2024-12-23T04:15:20.5371207+05:30","st_like":true,"st_dislike":true,"st_comment":"sample string 9","st_rating":1,"ReplyId":1}

application/xml, text/xml

Sample:
<Tbl_StoreReviews xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataBase">
  <Address>sample string 5</Address>
  <CreateDate>2024-12-23T04:15:20.5371207+05:30</CreateDate>
  <MobileNo>sample string 4</MobileNo>
  <Name>sample string 3</Name>
  <ReplyId>1</ReplyId>
  <StoreId>2</StoreId>
  <UserId>1</UserId>
  <st_comment>sample string 9</st_comment>
  <st_dislike>true</st_dislike>
  <st_like>true</st_like>
  <st_rating>1</st_rating>
  <storelike_id>1</storelike_id>
</Tbl_StoreReviews>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponce
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Data": {}
}

text/html, multipart/form-data

Sample:
{"Status":"sample string 1","Message":"sample string 2","Data":{}}

application/xml, text/xml

Sample:
<APIResponce xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <Data />
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</APIResponce>