client_credentials grant for machine to machine authentication.
You may read more information on this flow here.
Obtaining Credentials
Please reach out to create a bot account for your company. Once approved and created, you will receieve two credentials:- Client ID: A public identifier for your application.
- Client Secret: A secret known only to your application and the authorization server.
Access Token Exchange
The Client ID and Client Secret do not provide access to the API by themselves, you must exchange them for a short-lived access token. This is accomplished by sending them to the/oauth/token endpoint:
Token Request
Token Response
Machine access tokens are short lived (1 hour by default). You may repeat the token
exchange at any time to obtain a new access token.
Your First Request
With an access token, you are now free to make requests to the API any time beforeexpires_at.
For example, we can fetch our own user information:
First API Request
Get User Response
For more information about this endpoint, see
GET /v1/users/{userId}