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