Request Access Token
Exchange client credentials for a bearer access token
Authorizations
HTTP Basic authentication using client_id:client_secret
Body
The OAuth 2.0 grant type to use. Defaults to client_credentials
client_credentials, authorization_code, refresh_token The Tight user ID to generate a scoped token for. Omit to generate a partner-level token with access to all companies.
The authorization code received from the authorization endpoint. Required for authorization_code grant type.
The redirect URI used in the authorization request. Required for authorization_code grant type.
The PKCE code verifier. Required when code_challenge_method=S256 was used in the authorization request.
The refresh token to exchange for a new access token. Required for refresh_token grant type.
Limits the token's permissions. Use read to create a read-only token,
or write to allow write access. Defaults to write if omitted.
read, write Response
Access token issued successfully
The bearer token to include in API requests.
"eyJhbGciOiJSUzI1NiJ9..."
Bearer "Bearer"
Token lifetime in seconds.
3600
Refresh token, returned for authorization_code grant types.
"tGzv3JOkF0XG5Qx2TlKWIA"
Space-separated list of granted scopes, if applicable.