Obtain an access token using OAuth 2.0 client credentials flow. The token must be included
in the Authorization header as Bearer <token> for all subsequent API requests.
Tokens expire after a set period and must be refreshed by requesting a new token.
OAuth 2.0 grant type. Must be client_credentials.
client_credentials "client_credentials"
API identifier/audience for the access token.
"your-audience"
Your client identifier issued by Wealthyhood.
"your-client-id"
Your client secret issued by Wealthyhood.
"your-client-secret"
Access token successfully issued.
The bearer token to include in API requests. Use this token in the Authorization header
as Bearer <access_token>.
"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ..."
Token type. Always Bearer for this API.
Bearer "Bearer"
Number of seconds until the access token expires. Request a new token before expiration to maintain uninterrupted API access.
x >= 13600
Granted scope for this token.
"your-scope"