GET api/OtherResources/GetRehabDetails?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

SearchTerm

string

Default value is

Body Parameters

None.

Response Information

Resource Description

OtherResourceRehabViewModel
NameDescriptionTypeAdditional information
RehabList

Collection of OtherResourceDetailsViewModel

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "RehabList": [
    {
      "OtherResourceDetailsId": 1,
      "Name": "sample string 2",
      "OtherResourceId": 3,
      "OtherResourceName": "sample string 4",
      "ContactNo": "sample string 5",
      "AlternateContactNo": "sample string 6",
      "Latitude": 1.0,
      "Longitude": 1.0,
      "Address": "sample string 7",
      "Incharge": "sample string 8",
      "TransDate": "2025-10-28T01:09:32.5681796+05:30",
      "UserId": "sample string 10"
    },
    {
      "OtherResourceDetailsId": 1,
      "Name": "sample string 2",
      "OtherResourceId": 3,
      "OtherResourceName": "sample string 4",
      "ContactNo": "sample string 5",
      "AlternateContactNo": "sample string 6",
      "Latitude": 1.0,
      "Longitude": 1.0,
      "Address": "sample string 7",
      "Incharge": "sample string 8",
      "TransDate": "2025-10-28T01:09:32.5681796+05:30",
      "UserId": "sample string 10"
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<OtherResourceRehabViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
  <RehabList>
    <OtherResourceDetailsViewModel>
      <Address>sample string 7</Address>
      <AlternateContactNo>sample string 6</AlternateContactNo>
      <ContactNo>sample string 5</ContactNo>
      <Incharge>sample string 8</Incharge>
      <Latitude>1</Latitude>
      <Longitude>1</Longitude>
      <Name>sample string 2</Name>
      <OtherResourceDetailsId>1</OtherResourceDetailsId>
      <OtherResourceId>3</OtherResourceId>
      <OtherResourceName>sample string 4</OtherResourceName>
      <TransDate>2025-10-28T01:09:32.5681796+05:30</TransDate>
      <UserId>sample string 10</UserId>
    </OtherResourceDetailsViewModel>
    <OtherResourceDetailsViewModel>
      <Address>sample string 7</Address>
      <AlternateContactNo>sample string 6</AlternateContactNo>
      <ContactNo>sample string 5</ContactNo>
      <Incharge>sample string 8</Incharge>
      <Latitude>1</Latitude>
      <Longitude>1</Longitude>
      <Name>sample string 2</Name>
      <OtherResourceDetailsId>1</OtherResourceDetailsId>
      <OtherResourceId>3</OtherResourceId>
      <OtherResourceName>sample string 4</OtherResourceName>
      <TransDate>2025-10-28T01:09:32.5681796+05:30</TransDate>
      <UserId>sample string 10</UserId>
    </OtherResourceDetailsViewModel>
  </RehabList>
  <TotalRecords>1</TotalRecords>
</OtherResourceRehabViewModel>