Get an Access Token
OAuth
Get an Access Token
Exchange your client credentials for an access code.
POST
Get an Access Token
Body
application/json
The type of access token you want to request.
Available options:
client_credentials Your client ID.
Example:
"<client_id>"
Your client secret.
Example:
"<client_secret>"
A space delimited list of scopes your access token should be provisioned to allow.
Available options:
account_number/read, account_number/read_write, ach/read, ach/read_write, wire/read, wire/read_write, instant_payment/read, instant_payment/read_write, event/read, internal_transfer/read, internal_transfer/read_write, lending/read, lending/read_write, entity/read, entity/read_write, funding/read, funding/read_write, subledger_balance/read, subledger_balance/read_write, account/read, account/read_write, application/read, application/read_write, blockchain_payment/read, blockchain_payment/read_write Example:
"ach/read"
Response
Successful token exchange
A Base64 access token.
Example:
"AN_ACCESS_TOKEN"
The token type.
Example:
"Bearer"
A space delimited list of scopes your access token is provisioned for.
Example:
"ach/read account_number/read"
The number of seconds the access token will expire in.
Example:
86400

