APIFlights

Create a flight

POST
/api/v1/flights

Authorization

bearerAuth flight.create.own
AuthorizationBearer <token>

Send Authorization: Bearer <credential>. Create API keys in AirTrail Security settings. OAuth clients use authorization code with PKCE S256 and a resource identifier matching /api/v1.

In: header

Scope: flight.create.own

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v1/flights" \  -H "Content-Type: application/json" \  -d '{    "date": "2019-08-24",    "fromId": 1,    "toId": 1,    "passengers": [      {}    ]  }'
{  "data": {    "id": "string"  }}