How to Authenticate
Request your Bearer Token to authenticate the calls
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
grant_typestringRequiredExample:
client_credentialsclient_idstringRequiredExample:
abc123client_secretstringRequiredExample:
abc123scopestringRequiredExample:
members:read financial:readResponses
200
Successful response
application/json
Responseobject
post
/oauth2/tokenPOST /oauth2/token HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 119
"grant_type='client_credentials'&client_id='abc123'&client_secret='abc123'&scope='members:read financial:read'"200
Successful response
{}Last updated