Get all releases that have been transferred to you. This includes all data except the pincode.
The maximum number of records to return
Page number, to be used with limit
Timestamp to limit the releases to those modified since then
The bill of lading number
The container number
GET /tmining/api/v1/releases HTTP/1.1
Host: url:port
Authorization: Bearer JWT
Accept: */*
[
{
"release_data": {
"billOfLading": {
"blNumber": "text",
"portOfLoading": "text",
"portOfDestination": "text",
"vessel": "text",
"agent": "text",
"stayNumber": "text",
"lloydsNumber": "text",
"voyageNumber": "text",
"lineCode": "text"
},
"container": {
"containerNumber": "text",
"containerStatus": "released",
"pickupLocation": "text",
"turnInLocation": "text",
"turnInReference": "text",
"termsAndConditions": "text",
"validFrom": "2025-04-30T08:59:38.634Z",
"validUntil": "2025-04-30T08:59:38.634Z",
"isoTypeCode": "text",
"loadStatus": "text",
"moveType": "text"
}
},
"address": "text",
"deleted": true,
"blocked": true,
"encryptedPin": "text",
"gateOut": "2025-04-30T08:59:38.634Z",
"createdAt": "2025-04-30T08:59:38.634Z",
"updatedAt": "2025-04-30T08:59:38.634Z",
"owner": "text",
"creator": "text",
"greenLights": {
"total": "text",
"events": {
"customs": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"pickuplight": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"gateoperation": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"terminalready": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"customsprogress": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"commercialrelease": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"terminaloperation": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
}
}
}
}
]
Get the data of a single release identified by its address, excluding the pincode.
GET /tmining/api/v1/releases/{address} HTTP/1.1
Host: url:port
Authorization: Bearer JWT
Accept: */*
{
"release_data": {
"billOfLading": {
"blNumber": "text",
"portOfLoading": "text",
"portOfDestination": "text",
"vessel": "text",
"agent": "text",
"stayNumber": "text",
"lloydsNumber": "text",
"voyageNumber": "text",
"lineCode": "text"
},
"container": {
"containerNumber": "text",
"containerStatus": "released",
"pickupLocation": "text",
"turnInLocation": "text",
"turnInReference": "text",
"termsAndConditions": "text",
"validFrom": "2025-04-30T08:59:38.634Z",
"validUntil": "2025-04-30T08:59:38.634Z",
"isoTypeCode": "text",
"loadStatus": "text",
"moveType": "text"
}
},
"address": "text",
"deleted": true,
"blocked": true,
"encryptedPin": "text",
"gateOut": "2025-04-30T08:59:38.634Z",
"createdAt": "2025-04-30T08:59:38.634Z",
"updatedAt": "2025-04-30T08:59:38.634Z",
"owner": "text",
"creator": "text",
"greenLights": {
"total": "text",
"events": {
"customs": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"pickuplight": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"gateoperation": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"terminalready": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"customsprogress": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"commercialrelease": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
},
"terminaloperation": {
"color": "text",
"value": "text",
"updatedAt": "2025-04-30T08:59:38.634Z"
}
}
}
}