GET api/main/ListFaq

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FAQ
NameDescriptionTypeAdditional information
FaqId

integer

None.

FaqQuestion

string

None.

FaqAnswer

string

None.

TypeId

integer

None.

lng

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FaqId": 1,
    "FaqQuestion": "sample string 2",
    "FaqAnswer": "sample string 3",
    "TypeId": 1,
    "lng": true
  },
  {
    "FaqId": 1,
    "FaqQuestion": "sample string 2",
    "FaqAnswer": "sample string 3",
    "TypeId": 1,
    "lng": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFAQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mobinstore_api.Models">
  <FAQ>
    <FaqAnswer>sample string 3</FaqAnswer>
    <FaqId>1</FaqId>
    <FaqQuestion>sample string 2</FaqQuestion>
    <TypeId>1</TypeId>
    <lng>true</lng>
  </FAQ>
  <FAQ>
    <FaqAnswer>sample string 3</FaqAnswer>
    <FaqId>1</FaqId>
    <FaqQuestion>sample string 2</FaqQuestion>
    <TypeId>1</TypeId>
    <lng>true</lng>
  </FAQ>
</ArrayOfFAQ>