v1

latestOpenAPI 3.1.02026-07-24700152.8 KB

Obtain tokens

The endpoint to generate an access token has a rate limit of 1 req/min. As these tokens are valid for 24 hours, there is no need to make requests for each request.

When the rate limit is hit, we will return HTTP status 429, and information about when the limit expires will be provided in both the header and the response body.

post/

Request body

client_idstring

Client ID provided by Breezeway

client_secretstring

Client Secret provided by Breezeway

Response

200

access_tokenstring
refresh_tokenstring

Example response

{
  "access_token": "xyz",
  "refresh_token": "xyZ"
}
All 70 operations