Information needed in the latch flow
Field | Type | Description |
---|---|---|
allowed | Bool | A boolean value |
latches | [Latch] | Array of Latch |
When used inside a request.
{
"allowed": true,
"latches": [
{
"id": 10,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
},
"name": "..."
},
{
"id": 15,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
},
"name": "..."
},
{
"id": 10,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE"
},
"name": "..."
}
]
}
When returned in a response.
{
"allowed": true,
"latches": [
{
"id": 13,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"name": "..."
},
{
"id": 10,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"name": "..."
},
{
"id": 15,
"address": {
"street": "Sint-Denijslaan",
"nr": "96",
"zipcode": "9000",
"city": "Gent",
"country": "BE",
"position": {
"latitude": 1.54361,
"longitude": 0.45645
}
},
"name": "..."
}
]
}