> ## 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.

# TokenLaunchEventWebhookConditionInput

> Input conditions for a token launch event webhook. Exactly one of `creatorAddress` or `launchpadName` is required — the webhook is indexed by whichever you provide.

<div data-generated>
  ## GraphQL

  ```
  input TokenLaunchEventWebhookConditionInput {
    creatorAddress: StringEqualsConditionInput
    launchpadName: OneOfStringConditionInput
    networkId: OneOfNumberConditionInput
    tokenAddress: StringEqualsConditionInput
  }

  input StringEqualsConditionInput {
    eq: String!
  }

  input OneOfStringConditionInput {
    oneOf: [String!]!
  }

  input OneOfNumberConditionInput {
    oneOf: [Int!]!
  }
  ```

  ### 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>
