How to Authenticate

Authenticate

post

Request your Bearer Token to authenticate the calls

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
grant_typestringRequiredExample: client_credentials
client_idstringRequiredExample: abc123
client_secretstringRequiredExample: abc123
scopestringRequiredExample: members:read financial:read
Responses
200

Successful response

application/json
Responseobject
post
/oauth2/token
POST /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