Python
import requests url = "https://api.zentry.gg/api/v1/orgs/organizations/{org_id}/" headers = {"Authorization": "<api-key>"} response = requests.request("DELETE", url, headers=headers) print(response.text)
{ "message": "Organization deleted successfully!" }
API key authentication. Prefix your Zentry API key with 'Token '. Example: 'Token your_api_key'
Unique identifier of the organization to delete
Organization deleted successfully!
"Organization deleted successfully!"