Skip to main content
If you will be continuing to use the same service, ensure you have created a new credential and replaced it in your service’s requests before deleting the old one — to prevent downtime and misconfiguration.
Navigate to Dashboard > Account > Integrations then scroll to API Access to manage your API credentials. API Access in Dashboard > Account > Integrations Hover over the trash icon next to the credential you would like to delete. Follow the confirm prompt to delete the credential.

Testing a deleted credential

Use the deleted token in the following request — it should fail with a 401 (Unauthorized) error.
curl --request GET \
  --url https://djfindr.com/api/1.1/wf/auth_check \
  --header "Authorization: Bearer DELETED_API_KEY"
CodeExpected Result
401✅ Credential successfully deleted
200❌ Credential is still active — check you used the right token
If you received a 401 error, you’re all set — the credential was successfully deleted.