GET api/ManagerPublic/SettingLocation/List?Keyword={Keyword}&IsUse={IsUse}&CurrentPage={CurrentPage}&RowPerPage={RowPerPage}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Keyword

string

None.

IsUse

byte

None.

CurrentPage

integer

None.

RowPerPage

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SettingLocationListModel
NameDescriptionTypeAdditional information
Id

integer

None.

IndexNumber

integer

None.

Name

string

None.

Amount

integer

None.

IsUse

boolean

None.

IsUseText

string

None.

ImageUrl

string

None.

DateCreate

date

None.

DistrictId

integer

None.

EmployeeIdCreate

integer

None.

EmployeeIdModify

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "indexNumber": 2,
    "name": "sample string 3",
    "amount": 4,
    "isUse": true,
    "isUseText": "sample string 6",
    "imageUrl": "sample string 7",
    "dateCreate": "2025-12-06T12:32:38.2797686+07:00",
    "districtId": 8,
    "employeeIdCreate": 9,
    "employeeIdModify": 10
  },
  {
    "id": 1,
    "indexNumber": 2,
    "name": "sample string 3",
    "amount": 4,
    "isUse": true,
    "isUseText": "sample string 6",
    "imageUrl": "sample string 7",
    "dateCreate": "2025-12-06T12:32:38.2797686+07:00",
    "districtId": 8,
    "employeeIdCreate": 9,
    "employeeIdModify": 10
  }
]

application/xml, text/xml

Sample:
<ArrayOfSettingLocationListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.ManagerPublic">
  <SettingLocationListModel>
    <Amount>4</Amount>
    <DateCreate>2025-12-06T12:32:38.2797686+07:00</DateCreate>
    <DistrictId>8</DistrictId>
    <EmployeeIdCreate>9</EmployeeIdCreate>
    <EmployeeIdModify>10</EmployeeIdModify>
    <Id>1</Id>
    <ImageUrl>sample string 7</ImageUrl>
    <IndexNumber>2</IndexNumber>
    <IsUse>true</IsUse>
    <IsUseText>sample string 6</IsUseText>
    <Name>sample string 3</Name>
  </SettingLocationListModel>
  <SettingLocationListModel>
    <Amount>4</Amount>
    <DateCreate>2025-12-06T12:32:38.2797686+07:00</DateCreate>
    <DistrictId>8</DistrictId>
    <EmployeeIdCreate>9</EmployeeIdCreate>
    <EmployeeIdModify>10</EmployeeIdModify>
    <Id>1</Id>
    <ImageUrl>sample string 7</ImageUrl>
    <IndexNumber>2</IndexNumber>
    <IsUse>true</IsUse>
    <IsUseText>sample string 6</IsUseText>
    <Name>sample string 3</Name>
  </SettingLocationListModel>
</ArrayOfSettingLocationListModel>