Please read the instructions below in the OAuth2.0 section to learn how to access the API.
Token - Token exchange
• Account Token - For clients to authenticate and exchange for an Access Token
. It should be prefixed by the string literal "Token," with whitespace separating the two strings.
"Authorization": "Token <account_token>"
• Access Token - is a Bearer token that represents the authorization to access resources on behalf of
a user. All requests must include the authorization Bearer
headers to access the API
"Authorization": "Bearer <access_token>"
OAuth2.0 - Open Authorization
• Access Token - is a Bearer token that represents the authorization to access resources on behalf of
a user. All requests must include the authorization headers Bearer
to access the API
"Authorization": "Bearer <access_token>"
• Client ID - is a unique identifier for your team passed into the payload when creating access
tokens.
• Client Secret - is a unique secret key passed into the payload when creating the access token.
• Password - The Password entered by the user.
• Username - the account used to identify the user and resource owner of files and assets.