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

# RawTransactionWebhookCondition

> Webhook conditions for a raw transaction.

<div data-generated>
  ## GraphQL

  ```
  type RawTransactionWebhookCondition {
    networkId: OneOfNumberCondition
    to: StringEqualsCondition
    from: StringEqualsCondition
    toOrFrom: StringEqualsCondition
    input: StringContainsCondition
    ignoreTokenPairEvents: Boolean
  }

  type OneOfNumberCondition {
    oneOf: [Int!]!
  }

  type StringEqualsCondition {
    eq: String!
  }

  type StringContainsCondition {
    contains: [String!]
    notContains: [String!]
  }
  ```

  ### Used By

  **Returned by**

  * [createWebhooks](/api-reference/mutations/createwebhooks.md): Create event webhooks for price, token/pair, transfer, market cap, and prediction market trades.
  * [getWebhooks](/api-reference/queries/getwebhooks.md): Returns a user's list of webhooks.
</div>
