GET api/Auction/GetParcelInformation?authToken={authToken}&code={code}

Gets Parcel Information by Package QrCode

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authToken

The Authentication Token

string

Required

code

The QrCode

string

Required

Body Parameters

None.

Response Information

Resource Description

ServiceResultOfAuctionParcelPickupModel
NameDescriptionTypeAdditional information
Result

AuctionParcelPickupModel

None.

ErrorCode

ServiceErrorCode

None.

ErrorMessage

Collection of string

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": {
    "AuctionParcelId": "75cb1e78-51b6-4ce3-895c-d85bd91df20f",
    "AuctionId": "20a45e5d-0831-4497-bc3a-008cdcbfa288",
    "BidParcelId": "sample string 3",
    "ParcelName": "sample string 4",
    "Packages": [
      {
        "Id": "e28c88ce-1dba-4c8a-a56b-db6c54929fe4",
        "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": "6087d459-b61e-45ae-8fb4-b432a0a6430a"
      },
      {
        "Id": "e28c88ce-1dba-4c8a-a56b-db6c54929fe4",
        "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": "6087d459-b61e-45ae-8fb4-b432a0a6430a"
      }
    ]
  },
  "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>20a45e5d-0831-4497-bc3a-008cdcbfa288</d2p1:AuctionId>
    <d2p1:AuctionParcelId>75cb1e78-51b6-4ce3-895c-d85bd91df20f</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>6087d459-b61e-45ae-8fb4-b432a0a6430a</d2p1:ExternalOperatorId>
        <d2p1:Height>5</d2p1:Height>
        <d2p1:Id>e28c88ce-1dba-4c8a-a56b-db6c54929fe4</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>6087d459-b61e-45ae-8fb4-b432a0a6430a</d2p1:ExternalOperatorId>
        <d2p1:Height>5</d2p1:Height>
        <d2p1:Id>e28c88ce-1dba-4c8a-a56b-db6c54929fe4</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>