POST api/FAQ/GetAll
Request Information
URI Parameters
None.
Body Parameters
FAQLister| Name | Description | Type | Additional information |
|---|---|---|---|
| FAQs | Collection of FAQ |
None. |
|
| SearchCriteria | FAQ |
None. |
|
| Pager | Pager |
None. |
Request Formats
application/json, text/json
Sample:
{
"FAQs": [
{
"Id": 1,
"Question": "sample string 2",
"Answer": "sample string 3",
"IsActive": true,
"CreatedBy": 5,
"CreatedDate": "2025-12-16T01:06:07.3444551+00:00",
"LastModifiedBy": 7,
"LastModifiedDate": "2025-12-16T01:06:07.3444551+00:00",
"DeletedBy": 1,
"DeletedDate": "2025-12-16T01:06:07.3444551+00:00",
"ColumnName": "sample string 9",
"SortDirection": "sample string 10"
},
{
"Id": 1,
"Question": "sample string 2",
"Answer": "sample string 3",
"IsActive": true,
"CreatedBy": 5,
"CreatedDate": "2025-12-16T01:06:07.3444551+00:00",
"LastModifiedBy": 7,
"LastModifiedDate": "2025-12-16T01:06:07.3444551+00:00",
"DeletedBy": 1,
"DeletedDate": "2025-12-16T01:06:07.3444551+00:00",
"ColumnName": "sample string 9",
"SortDirection": "sample string 10"
}
],
"SearchCriteria": {
"Id": 1,
"Question": "sample string 2",
"Answer": "sample string 3",
"IsActive": true,
"CreatedBy": 5,
"CreatedDate": "2025-12-16T01:06:07.3444551+00:00",
"LastModifiedBy": 7,
"LastModifiedDate": "2025-12-16T01:06:07.3444551+00:00",
"DeletedBy": 1,
"DeletedDate": "2025-12-16T01:06:07.3444551+00:00",
"ColumnName": "sample string 9",
"SortDirection": "sample string 10"
},
"Pager": {
"PageSize": 1,
"Take": 2,
"Skip": 3,
"CurrentPage": 4.0,
"TotalPage": "sample string 5",
"TotalRecord": 6.0
}
}
application/xml, text/xml
Sample:
<FAQLister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSCWebAPI.Domain">
<FAQs>
<FAQ>
<Answer>sample string 3</Answer>
<ColumnName>sample string 9</ColumnName>
<CreatedBy>5</CreatedBy>
<CreatedDate>2025-12-16T01:06:07.3444551+00:00</CreatedDate>
<DeletedBy>1</DeletedBy>
<DeletedDate>2025-12-16T01:06:07.3444551+00:00</DeletedDate>
<Id>1</Id>
<IsActive>true</IsActive>
<LastModifiedBy>7</LastModifiedBy>
<LastModifiedDate>2025-12-16T01:06:07.3444551+00:00</LastModifiedDate>
<Question>sample string 2</Question>
<SortDirection>sample string 10</SortDirection>
</FAQ>
<FAQ>
<Answer>sample string 3</Answer>
<ColumnName>sample string 9</ColumnName>
<CreatedBy>5</CreatedBy>
<CreatedDate>2025-12-16T01:06:07.3444551+00:00</CreatedDate>
<DeletedBy>1</DeletedBy>
<DeletedDate>2025-12-16T01:06:07.3444551+00:00</DeletedDate>
<Id>1</Id>
<IsActive>true</IsActive>
<LastModifiedBy>7</LastModifiedBy>
<LastModifiedDate>2025-12-16T01:06:07.3444551+00:00</LastModifiedDate>
<Question>sample string 2</Question>
<SortDirection>sample string 10</SortDirection>
</FAQ>
</FAQs>
<Pager>
<CurrentPage>4</CurrentPage>
<PageSize>1</PageSize>
<Skip>3</Skip>
<Take>2</Take>
<TotalPage>sample string 5</TotalPage>
<TotalRecord>6</TotalRecord>
</Pager>
<SearchCriteria>
<Answer>sample string 3</Answer>
<ColumnName>sample string 9</ColumnName>
<CreatedBy>5</CreatedBy>
<CreatedDate>2025-12-16T01:06:07.3444551+00:00</CreatedDate>
<DeletedBy>1</DeletedBy>
<DeletedDate>2025-12-16T01:06:07.3444551+00:00</DeletedDate>
<Id>1</Id>
<IsActive>true</IsActive>
<LastModifiedBy>7</LastModifiedBy>
<LastModifiedDate>2025-12-16T01:06:07.3444551+00:00</LastModifiedDate>
<Question>sample string 2</Question>
<SortDirection>sample string 10</SortDirection>
</SearchCriteria>
</FAQLister>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.