# Gestal L-Track Resource
Gestal L-Track resource represents data of each bin live status.
Read-only
Clients create L-Tracks and integrators have read-only access.
# Endpoint
https://api.gestal.cloud/integration/l-track
# The Gestal L-Track object
In addition to the common request attributes, the following attributes define the object.
| Attribute | Type | Description |
|---|---|---|
name | string | Bin name. |
type | string | Bin type: flat, offCentered or regular. |
diameter | float | Bin diameter in meters. |
roof_height | float | Bin roof height in meters. |
height | float | Bin vertical part height in meters. |
bottom_height | float | Bin conic part height in meters. This value is ignored when the type is flat . |
volume | float | Bin volume in cubic meters. The value is calculated based on the measurements. |
capacity | float | Bin capacity in metric tons. Client sets the value. |
quantity | float | Bin remaining quantity in cubic meters. |
last_sync | datetime | Date and time of last bin synchronization. |
# Response Example
{
"cloud_id": "silo_hUdntuB2PEPwg03VZqMWKo9VtNt0WA4T",
"name": "Silo #1",
"type": "regular",
"diameter": 2.5,
"roof_height": 0.75,
"height": 1.85,
"bottom_height": 2.53,
"volume": 14.4479403333,
"capacity": 8.5,
"quantity": 11.7865464312,
"last_sync": "2023-08-30T16:05:23.948Z",
"created_at": "2001-01-01T01:01:01.000Z",
"updated_at": "2001-01-01T01:01:01.000Z"
}