Remove an Organization from your tenant. This action cannot be undone.
Note: Members are automatically disassociated from an Organization when it is deleted. However, this action does not delete these users from your tenant.
DELETE
/
organizations
/
{id}
TypeScript
コピー
AIに質問
import { ManagementClient } from "auth0";async function main() { const client = new ManagementClient({ token: "<token>", }); await client.organizations.delete("id");}main();