JavaScript
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": [] } ]
List all members of the current platform’s organization, including their roles.
Auth0 JWT access token. See Authentication for details.
Successful Response
Show child attributes