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

# CreateTokenTransferEventWebhooksInput

> Input for creating token transfer event webhooks.

<div data-generated>
  ## GraphQL

  ```
  input CreateTokenTransferEventWebhooksInput {
    webhooks: [CreateTokenTransferEventWebhookArgs!]!
  }

  enum AlertRecurrence {
    INDEFINITE
    ONCE
  }

  input StringEqualsConditionInput {
    eq: String!
  }

  input OneOfNumberConditionInput {
    oneOf: [Int!]!
  }

  enum TokenTransferDirection {
    FROM
    TO
  }

  input OneOfTokenTransferDirectionConditionInput {
    oneOf: [TokenTransferDirection!]!
  }

  input TokenTransferEventWebhookConditionInput {
    tokenAddress: StringEqualsConditionInput
    networkId: OneOfNumberConditionInput
    address: StringEqualsConditionInput
    direction: OneOfTokenTransferDirectionConditionInput
  }

  input RetrySettingsInput {
    maxTimeElapsed: Int
    minRetryDelay: Int
    maxRetryDelay: Int
    maxRetries: Int
  }

  input BucketKeyInput {
    bucketId: String!
    bucketSortKey: String!
  }

  enum PublishingType {
    BATCH
    SINGLE
  }

  input CreateTokenTransferEventWebhookArgs {
    name: String!
    callbackUrl: String!
    securityToken: String!
    alertRecurrence: AlertRecurrence!
    conditions: TokenTransferEventWebhookConditionInput!
    retrySettings: RetrySettingsInput
    bucketKey: BucketKeyInput
    publishingType: PublishingType
    deduplicate: Boolean
  }
  ```

  ### Used By

  **Used as input by**

  * [createWebhooks](/api-reference/mutations/createwebhooks.md): Create event webhooks for price, token/pair, transfer, market cap, and prediction market trades.
</div>
