Delete an API key
import requests
url = "https://{FUSION HOST}/api/api-key/{id}"
response = requests.delete(url)
print(response.text)Delete an API key
Delete the API key with the specified ID. Note that the ID is different than the key name. Use GET /api-key to fetch the complete list of existing keys.
DELETE
/
api-key
/
{id}
Delete an API key
import requests
url = "https://{FUSION HOST}/api/api-key/{id}"
response = requests.delete(url)
print(response.text)Path Parameters
The API key ID.
Response
200
OK
Was this page helpful?
⌘I