GET api/Testimonials/GetTestimonials?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SearchTerm | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
TestimonialViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TestimonialList | Collection of utblTestimonial |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TestimonialList": [
{
"TestimonialId": 1,
"TestimonialName": "sample string 2",
"Address": "sample string 3",
"ImagePath": "sample string 4",
"Remarks": "sample string 5",
"TransDate": "2025-10-28T01:09:33.3025532+05:30",
"UserId": "sample string 7"
},
{
"TestimonialId": 1,
"TestimonialName": "sample string 2",
"Address": "sample string 3",
"ImagePath": "sample string 4",
"Remarks": "sample string 5",
"TransDate": "2025-10-28T01:09:33.3025532+05:30",
"UserId": "sample string 7"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<TestimonialViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operation.CustomModels">
<TestimonialList xmlns:d2p1="http://schemas.datacontract.org/2004/07/General.Operation.Models">
<d2p1:utblTestimonial>
<d2p1:Address>sample string 3</d2p1:Address>
<d2p1:ImagePath>sample string 4</d2p1:ImagePath>
<d2p1:Remarks>sample string 5</d2p1:Remarks>
<d2p1:TestimonialId>1</d2p1:TestimonialId>
<d2p1:TestimonialName>sample string 2</d2p1:TestimonialName>
<d2p1:TransDate>2025-10-28T01:09:33.3025532+05:30</d2p1:TransDate>
<d2p1:UserId>sample string 7</d2p1:UserId>
</d2p1:utblTestimonial>
<d2p1:utblTestimonial>
<d2p1:Address>sample string 3</d2p1:Address>
<d2p1:ImagePath>sample string 4</d2p1:ImagePath>
<d2p1:Remarks>sample string 5</d2p1:Remarks>
<d2p1:TestimonialId>1</d2p1:TestimonialId>
<d2p1:TestimonialName>sample string 2</d2p1:TestimonialName>
<d2p1:TransDate>2025-10-28T01:09:33.3025532+05:30</d2p1:TransDate>
<d2p1:UserId>sample string 7</d2p1:UserId>
</d2p1:utblTestimonial>
</TestimonialList>
<TotalRecords>1</TotalRecords>
</TestimonialViewModel>