Error
Application error
59100: Resource Is Still In Use
API
The resource cannot be deleted because it is still referenced by another resource. This error is returned when deleting a SharedKey, AuthProfile, or Setting that is still in use.
- Deleting a
SharedKeywhile one or moreSettingsstill reference it for signature validation. - Deleting an
AuthProfilewhile one or moreSettingsstill reference it for authentication. - Deleting a
Settingwhile one or moreRulesstill route traffic to it.
- List the resources that depend on the one you're trying to delete:
- For a
SharedKey:GET /v2/Webhooks/Settings?sharedKeyId={id} - For an
AuthProfile:GET /v2/Webhooks/Settings?authProfileId={id} - For a
Setting:GET /v2/Webhooks/Rules?settingId={id}
- For a
- Update or delete each dependent resource so it no longer references the one you want to remove.
- Retry the delete request.