Session API
Removing Users
Session API
Removing Users
DELETE
/users/{user_id}
Bearer*
curl --request DELETE \
--url https://engine.hyperbeam.com/users/{user_id} \
--header 'Bearer: <bearer>'
Parameters
user_idrequired
string
The ID of the user
curl -X DELETE -H 'Authorization: Bearer <your-admin-token>' \
<base_url>/users/<user_id>
Removing a user will disconnect the user from the cloud computer session. To ensure the user is unable to return, use webhook authentication and deny access if the user attempts to reconnect.
curl -X DELETE -H 'Authorization: Bearer <your-admin-token>' \
<base_url>/users/<user_id>