GET v1/Parcels/{trackingCode}/ProductInfo

Return available product and invoice info for given trackingcode.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
trackingCode

The trackingcode of the parcel

string

Required.

Body Parameters

None.

Response Information

Resource Description

Product an Invoice info related to the trackingcode.

Collection of ParcelsProductInfoResponse
NameDescriptionTypeAdditional information
TrackintCode

string

None.

Carrier

string

None.

VatTariffCode

string

None.

VatPercentage

decimal number

None.

OrderCode

string

None.

OrderId

integer

None.

InvoiceCode

string

None.

InvoiceFileId

integer

None.

InvoiceId

integer

None.

ItemQuantity

decimal number

None.

WeightKg

decimal number

None.

LengthM

decimal number

None.

WidthM

decimal number

None.

HeightM

decimal number

None.

ProductCode

string

None.

ProductName

string

None.

ItemPriceExVat

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TrackintCode": "sample string 1",
    "Carrier": "sample string 2",
    "VatTariffCode": "sample string 3",
    "VatPercentage": 4.0,
    "OrderCode": "sample string 5",
    "OrderId": 6,
    "InvoiceCode": "sample string 7",
    "InvoiceFileId": 1,
    "InvoiceId": 1,
    "ItemQuantity": 8.0,
    "WeightKg": 1.0,
    "LengthM": 1.0,
    "WidthM": 1.0,
    "HeightM": 1.0,
    "ProductCode": "sample string 9",
    "ProductName": "sample string 10",
    "ItemPriceExVat": 11.0
  },
  {
    "TrackintCode": "sample string 1",
    "Carrier": "sample string 2",
    "VatTariffCode": "sample string 3",
    "VatPercentage": 4.0,
    "OrderCode": "sample string 5",
    "OrderId": 6,
    "InvoiceCode": "sample string 7",
    "InvoiceFileId": 1,
    "InvoiceId": 1,
    "ItemQuantity": 8.0,
    "WeightKg": 1.0,
    "LengthM": 1.0,
    "WidthM": 1.0,
    "HeightM": 1.0,
    "ProductCode": "sample string 9",
    "ProductName": "sample string 10",
    "ItemPriceExVat": 11.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfParcelsProductInfoResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ParcelsProductInfoResponse>
    <TrackintCode>sample string 1</TrackintCode>
    <Carrier>sample string 2</Carrier>
    <VatTariffCode>sample string 3</VatTariffCode>
    <VatPercentage>4</VatPercentage>
    <OrderCode>sample string 5</OrderCode>
    <OrderId>6</OrderId>
    <InvoiceCode>sample string 7</InvoiceCode>
    <InvoiceFileId>1</InvoiceFileId>
    <InvoiceId>1</InvoiceId>
    <ItemQuantity>8</ItemQuantity>
    <WeightKg>1</WeightKg>
    <LengthM>1</LengthM>
    <WidthM>1</WidthM>
    <HeightM>1</HeightM>
    <ProductCode>sample string 9</ProductCode>
    <ProductName>sample string 10</ProductName>
    <ItemPriceExVat>11</ItemPriceExVat>
  </ParcelsProductInfoResponse>
  <ParcelsProductInfoResponse>
    <TrackintCode>sample string 1</TrackintCode>
    <Carrier>sample string 2</Carrier>
    <VatTariffCode>sample string 3</VatTariffCode>
    <VatPercentage>4</VatPercentage>
    <OrderCode>sample string 5</OrderCode>
    <OrderId>6</OrderId>
    <InvoiceCode>sample string 7</InvoiceCode>
    <InvoiceFileId>1</InvoiceFileId>
    <InvoiceId>1</InvoiceId>
    <ItemQuantity>8</ItemQuantity>
    <WeightKg>1</WeightKg>
    <LengthM>1</LengthM>
    <WidthM>1</WidthM>
    <HeightM>1</HeightM>
    <ProductCode>sample string 9</ProductCode>
    <ProductName>sample string 10</ProductName>
    <ItemPriceExVat>11</ItemPriceExVat>
  </ParcelsProductInfoResponse>
</ArrayOfParcelsProductInfoResponse>