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.json())

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