Skip to main content
GET
/
v1
/
platforms
/
me
/
members
List members
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.keystoneos.xyz/v1/platforms/me/members', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "user_id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "picture": "<string>",
    "roles": []
  }
]

Authorizations

Authorization
string
header
required

Auth0 JWT access token. See Authentication for details.

Response

Successful Response

user_id
string
required
email
string | null
name
string | null
picture
string | null
roles
RoleRead · object[]