GET api/Faq
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of faq| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| pergunta | string |
None. |
|
| resposta | string |
None. |
|
| created_at | date |
None. |
|
| ativo | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"pergunta": "sample string 2",
"resposta": "sample string 3",
"created_at": "2026-06-06T23:10:37.6800105-03:00",
"ativo": true
},
{
"id": 1,
"pergunta": "sample string 2",
"resposta": "sample string 3",
"created_at": "2026-06-06T23:10:37.6800105-03:00",
"ativo": true
}
]
application/xml, text/xml
Sample:
<ArrayOffaq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopperREST.Models">
<faq>
<ativo>true</ativo>
<created_at>2026-06-06T23:10:37.6800105-03:00</created_at>
<id>1</id>
<pergunta>sample string 2</pergunta>
<resposta>sample string 3</resposta>
</faq>
<faq>
<ativo>true</ativo>
<created_at>2026-06-06T23:10:37.6800105-03:00</created_at>
<id>1</id>
<pergunta>sample string 2</pergunta>
<resposta>sample string 3</resposta>
</faq>
</ArrayOffaq>