POST settings/GetFAQListByProductID
Request Information
URI Parameters
None.
Body Parameters
iGetFAQListName | Description | Type | Additional information |
---|---|---|---|
companyID | globally unique identifier |
None. |
|
productID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "companyID": "886129e7-a79b-46d4-a682-b72bca614e26", "productID": "4e353bb0-c76a-42cd-8501-166c461e6c0a" }
application/xml, text/xml
Sample:
<iGetFAQList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model"> <companyID>886129e7-a79b-46d4-a682-b72bca614e26</companyID> <productID>4e353bb0-c76a-42cd-8501-166c461e6c0a</productID> </iGetFAQList>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
oGetFAQListResponseName | Description | Type | Additional information |
---|---|---|---|
Records | Collection of oGetFAQList |
None. |
|
StatusCode | boolean |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Records": [ { "faqID": "efa7d1f5-18e0-4c1f-b743-e7c128dfcb09", "isURL": true, "title": "sample string 3", "description": "sample string 4", "status": "sample string 5", "url": "sample string 6" }, { "faqID": "efa7d1f5-18e0-4c1f-b743-e7c128dfcb09", "isURL": true, "title": "sample string 3", "description": "sample string 4", "status": "sample string 5", "url": "sample string 6" } ], "StatusCode": true, "Message": "sample string 2" }
application/xml, text/xml
Sample:
<oGetFAQListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model"> <Message>sample string 2</Message> <Records> <oGetFAQList> <description>sample string 4</description> <faqID>efa7d1f5-18e0-4c1f-b743-e7c128dfcb09</faqID> <isURL>true</isURL> <status>sample string 5</status> <title>sample string 3</title> <url>sample string 6</url> </oGetFAQList> <oGetFAQList> <description>sample string 4</description> <faqID>efa7d1f5-18e0-4c1f-b743-e7c128dfcb09</faqID> <isURL>true</isURL> <status>sample string 5</status> <title>sample string 3</title> <url>sample string 6</url> </oGetFAQList> </Records> <StatusCode>true</StatusCode> </oGetFAQListResponse>