Download OpenAPI specification:
Additional endpoints to manage eureka specific actions
Get the available slots
| apikey required | string The API key for the user. The user can obtain this from their "profile" page. |
required | object (timeFrame) |
required | object (geoPosition) |
| operationType required | string (operationType) Enum: "lnd" "tko" Type of operation |
{- "timeFrame": {
- "start": "2024-10-18T09:00:00Z",
- "end": "2024-10-18T10:00:00Z"
}, - "location": {
- "latitude": 0.1,
- "longitude": 0.1
}, - "operationType": "lnd"
}{- "vertiportId": "string",
- "slots": [
- {
- "slotTime": "2024-10-18T09:00:00Z",
- "fatoId": "FATO-001"
}
]
}Get the current status of the permissions for this operation
| operationId required | string The id of the operation |
| apikey required | string The API key for the user. The user can obtain this from their "profile" page. |
{- "permissions": [
- {
- "type": "PERMISSION_REQUEST",
- "status": "APPROVED"
}
], - "clearances": [
- {
- "type": "TAXI",
- "status": "APPROVED"
}, - {
- "type": "TAKEOFF",
- "status": "NEEDS_ACTION"
}
], - "slots": [
- {
- "type": "ARRIVAL_SLOT",
- "status": "APPROVED"
}, - {
- "type": "DEPARTURE_SLOT",
- "status": "NEEDS_ACTION",
- "alternativeSlot": "2024-10-18T09:00:00Z"
}
]
}Submit clearance
| operationId required | string The id of the operation |
| type required | any (clearanceType) Enum: "TAXI" "TAKEOFF" "LANDING" The type of the clearance |
| apikey required | string The API key for the user. The user can obtain this from their "profile" page. |
Send an updated ETA for this operation
| operationId required | string The id of the operation |
| apikey required | string The API key for the user. The user can obtain this from their "profile" page. |
| estimatedArrivalTime | string <date-time> The updated ETA |
{- "estimatedArrivalTime": "2019-08-24T14:15:22Z"
}