Python
import requests url = "https://{FUSION HOST}/api/users/{id}" response = requests.delete(url) print(response.text)
Delete the Fusion user with the specified ID.
The user ID. Note that this is different than the username. Use GET /users to get the list of user IDs.
GET /users
OK
Was this page helpful?