Path parameters

idstringrequired

The ID of the user to remove.

Response

idstring

The unique identifier for this user.

objectstring

This will always contain project_user for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.users.remove('9a1aa882-849c-43d1-bb32-dcefb907cf4e')
Response
{
  "id": "9a1aa882-849c-43d1-bb32-dcefb907cf4e",
  "object": "project_user",
  "deleted": true
}

Was this helpful?