Token

Get JWT token to login.

post
Authorizations
Body
client_idstringOptionalExample: username
client_secretstringOptionalExample: password
Responses
200

Get JWT token

application/json
post
POST / HTTP/1.1
Host: authentication_token
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 51

{
  "client_id": "username",
  "client_secret": "password"
}
200

Get JWT token

{
  "token": "text"
}

Was this helpful?