Authentication

Request an authentication token for an existing user or project client

The grant type must be one of password or client_credentials.When using a grant type of password, you must provide the fields username (email) and password.When using the grant type client_credentials you must provide the fields client_id and client_secret

post/api/v1/auth/token

Request body

grant_type'password' | 'client_credentials' required
usernamestring
passwordstring
client_idstring
client_secretstring

Response

Successfully authenticated

access_tokenstring required
expires_instring required
token_typestring required

Changes