POST
api/v1/ManageSellerFAQ
Request Information
Body Parameters
SellerFAQRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Action | string |
None. |
|
| FAQId | integer |
None. |
|
| ClientId | integer |
None. |
|
| Question | string |
None. |
|
| Answer | string |
None. |
|
| SortOrder | integer |
None. |
|
| CreatedBy | integer |
None. |
Request Formats
application/json, text/json
{
"Action": "sample string 1",
"FAQId": 1,
"ClientId": 2,
"Question": "sample string 3",
"Answer": "sample string 4",
"SortOrder": 1,
"CreatedBy": 1
}
text/html
{"Action":"sample string 1","FAQId":1,"ClientId":2,"Question":"sample string 3","Answer":"sample string 4","SortOrder":1,"CreatedBy":1}
application/xml, text/xml
<SellerFAQRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller"> <Action>sample string 1</Action> <Answer>sample string 4</Answer> <ClientId>2</ClientId> <CreatedBy>1</CreatedBy> <FAQId>1</FAQId> <Question>sample string 3</Question> <SortOrder>1</SortOrder> </SellerFAQRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: boolean
Response Formats
application/json, text/json, text/html
true
application/xml, text/xml
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>
