GET api/tracking/information/{storageCardId}

Get tracking information about a storage card

Request Information

URI Parameters

NameDescriptionTypeAdditional information
storageCardId

globally unique identifier

Required

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

TrackingInformationResponse
NameDescriptionTypeAdditional information
StorageCardId

globally unique identifier

None.

BranchId

integer

None.

Destination

TrackingDestinationResponse

None.

EquipmentSet

TrackingStorageCardEquipmentSetResponse

None.

Vehicle

TrackingVehicleResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "StorageCardId": "2997f393-7366-4388-8125-7153e2dca5af",
  "BranchId": 1,
  "Destination": {
    "BranchId": 1,
    "BranchName": "sample string 1",
    "Date": "12/21/2025 1:03:07 PM",
    "DepartmentName": "sample string 2"
  },
  "EquipmentSet": {
    "Id": "6ee904a2-a00a-407e-ab6b-fb1330ff9881",
    "BranchId": 2,
    "SeasonName": "sample string 3",
    "Equipments": [
      {
        "Id": "7a96fabb-24ab-42a0-abc8-c4fb80069ee5",
        "EquipmentPosition": 1
      },
      {
        "Id": "7a96fabb-24ab-42a0-abc8-c4fb80069ee5",
        "EquipmentPosition": 1
      }
    ]
  },
  "Vehicle": {
    "LicensePlate": "sample string 1",
    "Make": "sample string 2",
    "Model": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<TrackingInformationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Tracking">
  <BranchId>1</BranchId>
  <Destination>
    <BranchId>1</BranchId>
    <BranchName>sample string 1</BranchName>
    <Date>2025-12-21T13:03:07.8629952+00:00</Date>
    <DepartmentName>sample string 2</DepartmentName>
  </Destination>
  <EquipmentSet>
    <BranchId>2</BranchId>
    <Equipments>
      <TrackingStorageCardEquipmentResponse>
        <EquipmentPosition>1</EquipmentPosition>
        <Id>7a96fabb-24ab-42a0-abc8-c4fb80069ee5</Id>
      </TrackingStorageCardEquipmentResponse>
      <TrackingStorageCardEquipmentResponse>
        <EquipmentPosition>1</EquipmentPosition>
        <Id>7a96fabb-24ab-42a0-abc8-c4fb80069ee5</Id>
      </TrackingStorageCardEquipmentResponse>
    </Equipments>
    <Id>6ee904a2-a00a-407e-ab6b-fb1330ff9881</Id>
    <SeasonName>sample string 3</SeasonName>
  </EquipmentSet>
  <StorageCardId>2997f393-7366-4388-8125-7153e2dca5af</StorageCardId>
  <Vehicle>
    <LicensePlate>sample string 1</LicensePlate>
    <Make>sample string 2</Make>
    <Model>sample string 3</Model>
  </Vehicle>
</TrackingInformationResponse>