/releases

Get all releases

get
/releases

Get all releases that have been transferred to you. This includes all data except the pincode.

Authorizations
Query parameters
limitintegerOptional

The maximum number of records to return

pageintegerOptional

Page number, to be used with limit

sincestringOptional

Timestamp to limit the releases to those modified since then

blstringOptional

The bill of lading number

containerstringOptional

The container number

Responses
200

Successful response

application/json
get
/releases
GET /tmining/api/v1/releases HTTP/1.1
Host: url:port
Authorization: Bearer YOUR_SECRET_TOKEN
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-10-31T14:59:14.286Z",
        "validUntil": "2025-10-31T14:59:14.286Z",
        "isoTypeCode": "text",
        "loadStatus": "text",
        "moveType": "text"
      }
    },
    "address": "text",
    "deleted": true,
    "blocked": true,
    "encryptedPin": "text",
    "gateOut": "2025-10-31T14:59:14.286Z",
    "createdAt": "2025-10-31T14:59:14.286Z",
    "updatedAt": "2025-10-31T14:59:14.286Z",
    "owner": "text",
    "creator": "text",
    "greenLights": {
      "total": "text",
      "events": {
        "customs": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "pickuplight": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "gateoperation": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "terminalready": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "customsprogress": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "commercialrelease": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        },
        "terminaloperation": {
          "color": "text",
          "value": "text",
          "updatedAt": "2025-10-31T14:59:14.286Z"
        }
      }
    }
  }
]

Get one release

get
/releases/{address}

Get the data of a single release identified by its address, excluding the pincode.

Authorizations
Path parameters
addressstringRequired
Responses
200

Successful response

application/json
get
/releases/{address}
GET /tmining/api/v1/releases/{address} HTTP/1.1
Host: url:port
Authorization: Bearer YOUR_SECRET_TOKEN
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-10-31T14:59:14.286Z",
      "validUntil": "2025-10-31T14:59:14.286Z",
      "isoTypeCode": "text",
      "loadStatus": "text",
      "moveType": "text"
    }
  },
  "address": "text",
  "deleted": true,
  "blocked": true,
  "encryptedPin": "text",
  "gateOut": "2025-10-31T14:59:14.286Z",
  "createdAt": "2025-10-31T14:59:14.286Z",
  "updatedAt": "2025-10-31T14:59:14.286Z",
  "owner": "text",
  "creator": "text",
  "greenLights": {
    "total": "text",
    "events": {
      "customs": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "pickuplight": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "gateoperation": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "terminalready": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "customsprogress": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "commercialrelease": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      },
      "terminaloperation": {
        "color": "text",
        "value": "text",
        "updatedAt": "2025-10-31T14:59:14.286Z"
      }
    }
  }
}