v1
latestOpenAPI 3.0.12026-07-26106359429.8 KBOAuth
Get an Access Token
Exchange your client credentials for an access code.
post/v1/oauth/token
Request body
Example request
{
"client_id": "<client_id>",
"client_secret": "<client_secret>",
"scope": "ach/read"
}Response
Successful token exchange
Example response
{
"access_token": "AN_ACCESS_TOKEN",
"token_type": "Bearer",
"scope": "ach/read account_number/read",
"expires_in": 86400
}