For the complete documentation index, see llms.txt. This page is also available as Markdown.

Removing Users

This step shows how to remove users from your Groups platform.

Below is an example of the delete operation with the <USER_ID> parameter for a user:

curl --location --request DELETE 'https://<DOMAIN>/xapi/user/<USER_ID>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''
from perculus_sdk.client import APIClient

# API client
client = APIClient()
...

# Delete User 
client.users.delete_by_user_id("<USER_ID>")
// ASAP :)
import APIClient from "perculus-sdk"

// API client
const client = new APIClient()
...

// Create user 
client.users.deleteUser("<USER_ID>")

Last updated