auth.getAccessToken

GET https://relay.bluejeans.com/api/auth/accesstokens/:token
You can use this method to retrieve details about an existing AccessToken. This is handy if you have an AccessToken and need to determine which roles it grants.
GET /api/auth/accesstokens/DFG67SD876DFG76SDF5 HTTP/1.1 HTTP/1.1 200 OK Content-Type: application/json { "accessToken": "DFG67SD876DFG76SDF5", "clientName": null, "creationDate": 1418375348052, "enterpriseName": "myenterprise", "expirationDate": 1419584948052, "roles": [ "ROLE_READONLY", "ROLE_READWRITE" ] }

inputs

token

The alphanumeric token string of the AccessToken you want to retrieve.
String PATH yes
DFG67SD876DFG76SDF5

outputs

An AccessToken, or 404 if no such AccessToken exists.
application/json AccessToken