GET api/admin/categorysections/CategorySectionPaged?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}&CategoryID={CategoryID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

SearchTerm

string

Required

CategoryID

integer

Required

Body Parameters

None.

Response Information

Resource Description

CategorySectionPaged
NameDescriptionTypeAdditional information
CategorySections

Collection of CategorySectionGetModel

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "CategorySections": [
    {
      "CatSecID": 1,
      "CategoryID": 2,
      "CategoryName": "sample string 3",
      "SectionID": 4,
      "SectionName": "sample string 5",
      "StepOrder": 6,
      "UserID": "sample string 7"
    },
    {
      "CatSecID": 1,
      "CategoryID": 2,
      "CategoryName": "sample string 3",
      "SectionID": 4,
      "SectionName": "sample string 5",
      "StepOrder": 6,
      "UserID": "sample string 7"
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<CategorySectionPaged xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomMasterModels">
  <CategorySections>
    <CategorySectionGetModel>
      <CatSecID>1</CatSecID>
      <CategoryID>2</CategoryID>
      <CategoryName>sample string 3</CategoryName>
      <SectionID>4</SectionID>
      <SectionName>sample string 5</SectionName>
      <StepOrder>6</StepOrder>
      <UserID>sample string 7</UserID>
    </CategorySectionGetModel>
    <CategorySectionGetModel>
      <CatSecID>1</CatSecID>
      <CategoryID>2</CategoryID>
      <CategoryName>sample string 3</CategoryName>
      <SectionID>4</SectionID>
      <SectionName>sample string 5</SectionName>
      <StepOrder>6</StepOrder>
      <UserID>sample string 7</UserID>
    </CategorySectionGetModel>
  </CategorySections>
  <TotalRecords>1</TotalRecords>
</CategorySectionPaged>