auth.listAccessTokens
GET
https://relay.bluejeans.com/api/auth/accesstokens
Get a list of AccessTokens that have been granted for your Enterprise. Expired tokens will not be listed.
GET /api/auth/accesstokens HTTP/1.1
Authorization: Basic bXl1c2VybmFtZTpteXBhc3N3b3Jk
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"accessToken": "DFG67SD876DFG76SDF5",
"clientName": null,
"creationDate": 1418375348052,
"enterpriseName": "myenterprise",
"expirationDate": 1419584948052,
"roles": [ "ROLE_READONLY", "ROLE_READWRITE" ]
},
{
"accessToken": "DFG67SD876DFG76SDF6",
"clientName": "my relay client",
"creationDate": 1418375348053,
"enterpriseName": "myenterprise",
"expirationDate": 1419584948053,
"roles": [ "ROLE_READONLY" ]
}
]