GET api/BinManageAPI/GetBagTagDetails?FlightId={FlightId}&StorageBin={StorageBin}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FlightId | integer |
Required |
|
| StorageBin | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfBaggageMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of BaggageMaster |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"BagTag": "sample string 1",
"IsSelected": true
},
{
"BagTag": "sample string 1",
"IsSelected": true
}
],
"Success": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiResponseOfBaggageMastermixuTL1o xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BRS.Common">
<Message>sample string 2</Message>
<Success>true</Success>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BRS.Entity">
<d2p1:BaggageMaster>
<d2p1:BagTag>sample string 1</d2p1:BagTag>
<d2p1:IsSelected>true</d2p1:IsSelected>
</d2p1:BaggageMaster>
<d2p1:BaggageMaster>
<d2p1:BagTag>sample string 1</d2p1:BagTag>
<d2p1:IsSelected>true</d2p1:IsSelected>
</d2p1:BaggageMaster>
</Data>
</ApiResponseOfBaggageMastermixuTL1o>