Getting Started
How to connect with the August Health API
Credentials
-
User can get an access token by using the
POST /tokenendpoint w/ a request body like{"credentials": {"username": "my-api-username","password": "my-api-password"}} -
They should use the
idTokenincluded in the response. It is valid for 1 hour. If they need to refresh, they can use the refresh token to request a new token at thePOST /tokenendpoint like:{ "refreshToken": "<refresh token>"} -
Once they have the token, they can use it in an API request in the Authorization header, for example
Authorization: Bearer <insert id token>