POST
/
auth
/
token
curl --request POST \
  --url http://localhost:3003/auth/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "code": "<string>"
}'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "refresh": "<string>",
  "refresh_token": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Body

application/json
code
string
required

Response

200
application/json
Default Response
access_token
string
token_type
string
expires_in
integer
refresh
string
refresh_token
string