JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.keystoneos.xyz/v1/platforms/me/invitations', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
[ { "id": "<string>", "invitee_email": "<string>", "inviter_name": "<string>", "roles": [ "<string>" ], "created_at": "<string>", "expires_at": "<string>", "invitation_url": "<string>" } ]
List all pending invitations for the current platform’s organization.
Auth0 JWT access token. See Authentication for details.
Successful Response