Skip to contentSkip to navigationSkip to topbar
Page tools
Useful for sharing or LLM

On this pageProducts used
Looking for more inspiration?Visit the
Error
Application error

59100: Resource Is Still In Use

Twilio API Documentation and Error CodesAPI

Description

description page anchor

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.

Possible causes

possible-causes page anchor
  • Deleting a SharedKey while one or more Settings still reference it for signature validation.
  • Deleting an AuthProfile while one or more Settings still reference it for authentication.
  • Deleting a Setting while one or more Rules still route traffic to it.
  1. 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}
  2. Update or delete each dependent resource so it no longer references the one you want to remove.
  3. Retry the delete request.