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

fetch('https://api.keystoneos.xyz/v1/platforms/me/members/{user_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Authorizations

Authorization
string
header
required

Auth0 JWT access token. See Authentication for details.

Path Parameters

user_id
string
required

Response

Successful Response