POST api/faq/AddFAQ?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
FaqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Category | string |
None. |
|
| Question | string |
None. |
|
| Answer | string |
None. |
|
| CreationDate | date |
None. |
|
| AccessCount | integer |
None. |
|
| LastTimeAccess | date |
None. |
|
| Deleted | boolean |
None. |
|
| DeleteDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Category": "sample string 2",
"Question": "sample string 3",
"Answer": "sample string 4",
"CreationDate": "2025-12-13T11:11:00.8208639-03:00",
"AccessCount": 6,
"LastTimeAccess": "2025-12-13T11:11:00.8208639-03:00",
"Deleted": true,
"DeleteDate": "2025-12-13T11:11:00.8208639-03:00"
}
application/xml, text/xml
Sample:
<FaqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models"> <AccessCount>6</AccessCount> <Answer>sample string 4</Answer> <Category>sample string 2</Category> <CreationDate>2025-12-13T11:11:00.8208639-03:00</CreationDate> <DeleteDate>2025-12-13T11:11:00.8208639-03:00</DeleteDate> <Deleted>true</Deleted> <Id>1</Id> <LastTimeAccess>2025-12-13T11:11:00.8208639-03:00</LastTimeAccess> <Question>sample string 3</Question> </FaqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>