Retrieve the current position and status of a container in a yard.
GET /api/public/GetContainerPosition
Authorization: Bearer {api-key}
Parameter Type Required Description
Cont string Yes Container number (alphanumeric, - and _ allowed)
WHKey string Yes Encrypted warehouse key identifying the yard (provided by administrator)
If the container is in the yard:
{
"ContNum": "TCKU3456789",
"ISO": "45G1",
"Zone": "Zone A",
"Position": "B02-R03-T01",
"Bay": 2,
"Row": 3,
"Tier": 1,
"LastMove": "2025-11-15T08:30:00",
"IsEmpty": false,
"WOID": 10452
}
If the container exists but is not in the yard:
{
"ContNum": "TCKU3456789",
"ISO": "45G1",
"Zone": null,
"Position": "Not in yard",
"Bay": null,
"Row": null,
"Tier": null,
"LastMove": null,
"IsEmpty": null,
"WOID": null
}
Error Examples
{ "Code": 0, "Info": "Cont parameter is required" }
{ "Code": 0, "Info": "Container TCKU3456789 not found" }
{ "Code": 0, "Info": "WHKey is missing or invalid" }