GET api/ImgScan/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of imgscan
NameDescriptionTypeAdditional information
awbno

string

None.

pod_img

Collection of byte

None.

bkdate

date

None.

refno

string

None.

ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "awbno": "sample string 1",
    "pod_img": "QEA=",
    "bkdate": "2025-12-06T12:03:39.6075284+05:30",
    "refno": "sample string 2",
    "ID": 3
  },
  {
    "awbno": "sample string 1",
    "pod_img": "QEA=",
    "bkdate": "2025-12-06T12:03:39.6075284+05:30",
    "refno": "sample string 2",
    "ID": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfimgscan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArLog.Models">
  <imgscan>
    <ID>3</ID>
    <awbno>sample string 1</awbno>
    <bkdate>2025-12-06T12:03:39.6075284+05:30</bkdate>
    <pod_img>QEA=</pod_img>
    <refno>sample string 2</refno>
  </imgscan>
  <imgscan>
    <ID>3</ID>
    <awbno>sample string 1</awbno>
    <bkdate>2025-12-06T12:03:39.6075284+05:30</bkdate>
    <pod_img>QEA=</pod_img>
    <refno>sample string 2</refno>
  </imgscan>
</ArrayOfimgscan>