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

# Configure deposit callbacks

export const Available = ({to}) => <>
    <strong>Available to <Tooltip tip="Roles determine what each user can see and do in the merchant dashboard." cta="See role descriptions" href="/merchant-administration/add-a-user#determine-which-role-to-use">roles</Tooltip></strong>:
    {to.map(role => <>{" "}<Badge color="blue">{role}</Badge></>)}
</>;

<Available to={["Owner"]} />

By default, CryptoProcessing sends callbacks for these two deposit events: [deposits below the minimum allowed amount](/api-reference/callbacks/deposit-callbacks#below-minimum-amount), and [deposits received in a currency different from the one assigned to the crypto address](/api-reference/callbacks/deposit-callbacks#cross-currency-deposit). You can enable or disable either of these at any time.

<Steps>
  <Step title="In your merchant dashboard, go to Settings and open the Callbacks tab." />

  <Step title="Under Additional callbacks, click Manage." />

  <Step title="Enable or disable the callbacks you want to change, then click Save changes." />
</Steps>
