> ## Documentation Index
> Fetch the complete documentation index at: https://www.dynamic.xyz/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent webhooks

> Events emitted for delegated access: delegation grants, signatures, and revocations.

Agent-facing wallet events fire under the `wallet.delegation.*` namespace. They cover the lifecycle of delegated access: a user granting an agent or service permission to act with their wallet, signatures produced under that grant, and the grant being revoked.

For the shared event envelope, endpoint setup, retries, and signature verification, see [Setting up webhooks](/docs/platform/dashboard/webhooks/setup) and [Event delivery & best practices](/docs/platform/dashboard/webhooks/delivery-best-practices). The current list of event types is always available from the [event types endpoint](/docs/api-reference/events/get-event-types).

## Delegation events

<ParamField body="wallet.delegation.created" type="object">
  Occurs whenever a delegated share set is created for a wallet, granting a
  delegated entity signing access.
</ParamField>

<ParamField body="wallet.delegation.signature" type="object">
  Occurs whenever a WaaS wallet signature is completed from a delegated entity. Is a
  [wallet.](/docs/api-reference/schemas/Wallet)
</ParamField>

<ParamField body="wallet.delegation.revoked" type="object">
  Occurs whenever a delegated share set is revoked, ending the delegated
  entity's access.
</ParamField>

## Related events

* Wallet lifecycle and signing events (`wallet.created`, `wallet.signature`, and others) are documented under [Embedded wallet webhooks](/docs/embedded-wallets/webhooks).
