GET api/NavPincode?BranchId={BranchId}&Lut={Lut}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BranchId

unsigned integer

Required

Lut

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of NavPinModel
NameDescriptionTypeAdditional information
Pin_Date

date

None.

Branch_Id

integer

None.

Encrypted_Code

string

None.

Lut

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Pin_Date": "2024-10-08T19:16:25.2934957+05:00",
    "Branch_Id": 2,
    "Encrypted_Code": "sample string 3",
    "Lut": 4.1
  },
  {
    "Pin_Date": "2024-10-08T19:16:25.2934957+05:00",
    "Branch_Id": 2,
    "Encrypted_Code": "sample string 3",
    "Lut": 4.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfNavPinModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model">
  <NavPinModel>
    <Branch_Id>2</Branch_Id>
    <Encrypted_Code>sample string 3</Encrypted_Code>
    <Lut>4.1</Lut>
    <Pin_Date>2024-10-08T19:16:25.2934957+05:00</Pin_Date>
  </NavPinModel>
  <NavPinModel>
    <Branch_Id>2</Branch_Id>
    <Encrypted_Code>sample string 3</Encrypted_Code>
    <Lut>4.1</Lut>
    <Pin_Date>2024-10-08T19:16:25.2934957+05:00</Pin_Date>
  </NavPinModel>
</ArrayOfNavPinModel>