Skip to main content
DELETE
/
users
/
{id}
Delete a user
import requests

url = "https://{FUSION HOST}/api/users/{id}"

response = requests.delete(url)

print(response.text)

Documentation Index

Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

The user ID. Note that this is different than the username. Use GET /users to get the list of user IDs.

Response

OK