Skip to content
AeroDB
Search
K
Main Navigation
Airports
Notams
Pricing
Appearance
Menu
Return to top
Authenticate a user
POST
/login
Request Body
application/json
Schema
JSON
JSON
{
"username"
:
"john_doe"
,
"password"
:
"pA$$w0rd123"
}
Responses
200
401
The request has succeeded.
Content-Type
application/json
Schema
JSON
JSON
{
"token"
:
"adb_jwt_token"
,
"refreshToken"
:
"adb_refresh_token"
,
"user"
:
{
"id"
:
"123"
,
"createdAt"
:
"2020-01-01T00:00:00Z"
,
"updatedAt"
:
"2020-01-01T00:00:00Z"
,
"username"
:
"john_doe"
,
"email"
:
"john.doe@aerodb.net"
,
"isVerified"
:
true
}
}
POST
/login
Playground
Body
Try it out
Samples