GET api/testimonials/TestimonialsPagedBySchool?PageNo={PageNo}&PageSize={PageSize}&SchoolID={SchoolID}&sTerm={sTerm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SchoolID | integer |
Required |
|
| sTerm | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TestimonialPagedModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TestimonialList | Collection of TestimonialView |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TestimonialList": [
{
"TestimonialsID": 1,
"Name": "sample string 2",
"Address": "sample string 3",
"ComponentName": "sample string 4",
"SubComponentName": "sample string 5",
"TestimonialDate": "2026-04-19T16:28:08.8411461+05:30",
"IsPublished": "sample string 7",
"PublishDate": "2026-04-19T16:28:08.8411461+05:30"
},
{
"TestimonialsID": 1,
"Name": "sample string 2",
"Address": "sample string 3",
"ComponentName": "sample string 4",
"SubComponentName": "sample string 5",
"TestimonialDate": "2026-04-19T16:28:08.8411461+05:30",
"IsPublished": "sample string 7",
"PublishDate": "2026-04-19T16:28:08.8411461+05:30"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<TestimonialPagedModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SikkimRepository.Entities.CustomModels">
<TestimonialList>
<TestimonialView>
<Address>sample string 3</Address>
<ComponentName>sample string 4</ComponentName>
<IsPublished>sample string 7</IsPublished>
<Name>sample string 2</Name>
<PublishDate>2026-04-19T16:28:08.8411461+05:30</PublishDate>
<SubComponentName>sample string 5</SubComponentName>
<TestimonialDate>2026-04-19T16:28:08.8411461+05:30</TestimonialDate>
<TestimonialsID>1</TestimonialsID>
</TestimonialView>
<TestimonialView>
<Address>sample string 3</Address>
<ComponentName>sample string 4</ComponentName>
<IsPublished>sample string 7</IsPublished>
<Name>sample string 2</Name>
<PublishDate>2026-04-19T16:28:08.8411461+05:30</PublishDate>
<SubComponentName>sample string 5</SubComponentName>
<TestimonialDate>2026-04-19T16:28:08.8411461+05:30</TestimonialDate>
<TestimonialsID>1</TestimonialsID>
</TestimonialView>
</TestimonialList>
<TotalRecords>1</TotalRecords>
</TestimonialPagedModel>