GET ProviderComm/FAQ/{DeviceType}/{FAQKey}/{SystemLanguageId}
Get the list of FAQ
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DeviceType |
iPhone, Android, WindowsPhone, Web |
string |
Required |
FAQKey |
0 to get the top of the list |
string |
Required |
SystemLanguageId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultFAQName | Description | Type | Additional information |
---|---|---|---|
FAQs | Collection of ResultFAQOneItem |
None. |
Response Formats
application/json, text/json
Sample:
{ "FAQs": [ { "FAQKey": "sample string 1", "Content": "sample string 2", "IsLink": true }, { "FAQKey": "sample string 1", "Content": "sample string 2", "IsLink": true } ] }
application/xml, text/xml
Sample:
<ResultFAQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <FAQs> <ResultFAQOneItem> <Content>sample string 2</Content> <FAQKey>sample string 1</FAQKey> <IsLink>true</IsLink> </ResultFAQOneItem> <ResultFAQOneItem> <Content>sample string 2</Content> <FAQKey>sample string 1</FAQKey> <IsLink>true</IsLink> </ResultFAQOneItem> </FAQs> </ResultFAQ>