GET api/Auction/GetParcelInformation?authToken={authToken}&code={code}
Gets Parcel Information by Package QrCode
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
authToken |
The Authentication Token |
string |
Required |
code |
The QrCode |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ServiceResultOfAuctionParcelPickupModelName | Description | Type | Additional information |
---|---|---|---|
Result | AuctionParcelPickupModel |
None. |
|
ErrorCode | ServiceErrorCode |
None. |
|
ErrorMessage | Collection of string |
None. |
|
Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": { "AuctionParcelId": "d25d7489-c13a-4321-95d9-4567014040ab", "AuctionId": "d40f306d-ba3a-4b8a-94f4-a1d75eff7475", "BidParcelId": "sample string 3", "ParcelName": "sample string 4", "Packages": [ { "Id": "8952e6e5-d1c3-4ddb-9126-5485bf36da45", "BidParcelId": "sample string 2", "Name": "sample string 3", "Weight": 4.0, "Height": 5.0, "Width": 6.0, "Length": 7.0, "QrCode": "sample string 8", "ExternalCode": 1, "ExternalOperatorId": "bff83f9f-804f-42b2-ad50-71afeef6f86b" }, { "Id": "8952e6e5-d1c3-4ddb-9126-5485bf36da45", "BidParcelId": "sample string 2", "Name": "sample string 3", "Weight": 4.0, "Height": 5.0, "Width": 6.0, "Length": 7.0, "QrCode": "sample string 8", "ExternalCode": 1, "ExternalOperatorId": "bff83f9f-804f-42b2-ad50-71afeef6f86b" } ] }, "ErrorCode": 0, "ErrorMessage": [ "sample string 1", "sample string 2" ], "Success": true }
application/xml, text/xml
Sample:
<ServiceResultOfAuctionParcelPickupModelEJHQiVcc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOP.Common.Infrastructure.ApiObjects.Results"> <ErrorCode>None</ErrorCode> <ErrorMessage xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </ErrorMessage> <Success>true</Success> <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/BOP.Apps.Web.Areas.Api.Models"> <d2p1:AuctionId>d40f306d-ba3a-4b8a-94f4-a1d75eff7475</d2p1:AuctionId> <d2p1:AuctionParcelId>d25d7489-c13a-4321-95d9-4567014040ab</d2p1:AuctionParcelId> <d2p1:BidParcelId>sample string 3</d2p1:BidParcelId> <d2p1:Packages> <d2p1:AuctionPackagePickupItemModel> <d2p1:BidParcelId>sample string 2</d2p1:BidParcelId> <d2p1:ExternalCode>1</d2p1:ExternalCode> <d2p1:ExternalOperatorId>bff83f9f-804f-42b2-ad50-71afeef6f86b</d2p1:ExternalOperatorId> <d2p1:Height>5</d2p1:Height> <d2p1:Id>8952e6e5-d1c3-4ddb-9126-5485bf36da45</d2p1:Id> <d2p1:Length>7</d2p1:Length> <d2p1:Name>sample string 3</d2p1:Name> <d2p1:QrCode>sample string 8</d2p1:QrCode> <d2p1:Weight>4</d2p1:Weight> <d2p1:Width>6</d2p1:Width> </d2p1:AuctionPackagePickupItemModel> <d2p1:AuctionPackagePickupItemModel> <d2p1:BidParcelId>sample string 2</d2p1:BidParcelId> <d2p1:ExternalCode>1</d2p1:ExternalCode> <d2p1:ExternalOperatorId>bff83f9f-804f-42b2-ad50-71afeef6f86b</d2p1:ExternalOperatorId> <d2p1:Height>5</d2p1:Height> <d2p1:Id>8952e6e5-d1c3-4ddb-9126-5485bf36da45</d2p1:Id> <d2p1:Length>7</d2p1:Length> <d2p1:Name>sample string 3</d2p1:Name> <d2p1:QrCode>sample string 8</d2p1:QrCode> <d2p1:Weight>4</d2p1:Weight> <d2p1:Width>6</d2p1:Width> </d2p1:AuctionPackagePickupItemModel> </d2p1:Packages> <d2p1:ParcelName>sample string 4</d2p1:ParcelName> </Result> </ServiceResultOfAuctionParcelPickupModelEJHQiVcc>