You can remove an application using the or the . Once confirmed, this operation cannot be undone.

Use the Dashboard

  1. Go to Dashboard > Applications > Applications, and select the name of an application to view.
    Dashboard Applications List
  2. Scroll to the bottom of the Settings page, locate the Danger Zone, select Delete, and confirm.

Use the Management API

Make a DELETE call to the /Clients/delete_clients_by_id endpoints. Be sure to replace YOUR_CLIENT_ID and MGMT_API_ACCESS_TOKEN placeholder values with your and Management API , respectively.
curl --request DELETE \
--url 'https://{yourDomain}/api/v2/clients/%7ByourClientId%7D' \
--header 'authorization: Bearer {yourMgmtApiToken}'
ValueDescription
YOUR_CLIENT_IDΤhe ID of the application to be deleted.
MGMT_API_ACCESS_TOKENAccess Tokens for the Management API with the scope delete:clients.

Learn more