POST api/store/products/AskQuestion
Request Information
URI Parameters
None.
Body Parameters
AskQuestionModelName | Description | Type | Additional information |
---|---|---|---|
ProductID | integer |
Required |
|
ProductQACategoryID | integer |
Required |
|
CustomerID | integer |
None. |
|
CustomerName | string |
Max length: 50 |
|
Question | string |
Required Max length: 500 |
Request Formats
application/json, text/json
Sample:
{ "ProductID": 1, "ProductQACategoryID": 2, "CustomerID": 3, "CustomerName": "sample string 4", "Question": "sample string 5" }
application/xml, text/xml
Sample:
<AskQuestionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAWModels.StoreModel"> <CustomerID>3</CustomerID> <CustomerName>sample string 4</CustomerName> <ProductID>1</ProductID> <ProductQACategoryID>2</ProductQACategoryID> <Question>sample string 5</Question> </AskQuestionModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.