Authentication
3 min
there are several ways to authenticate with engine4 depending on the authentication method, different requests are sent to the /token endpoint password you can obtain an access token using your user account (username and password) by sending the following request { "client id" "your client id", "grant type" "password", "username" "your username", "password" "your password", } clientsecret you can obtain an access token using your client secret by sending the following request { "client id" "your client id", "grant type" "client credentials", "client secret" "your clientsecret" } usage authentication for the remaining api endpoints is performed using the authorization http header, with the access token being transmitted as a bearer token { "authorization" "bearer your access token" }