{
  "openrpc": "1.2.6",
  "info": {
    "title": "Ethereum Send Transaction Webhook Notifier",
    "description": "Quicknode Ethereum Send Transaction Webhook Notifier reference",
    "version": "1.0.0"
  },
  "methods": [
    {
      "name": "qn_sendRawTransactionWithWebhook",
      "summary": "Sends a raw transaction and notifies a webhook when a transaction is confirmed, failed or dropped by the network.",
      "description": "Sends a raw transaction and notifies a webhook when a transaction is confirmed, failed or dropped by the network.",
      "params": [
        {
          "name": "signedTx",
          "description": "The signed transaction data to be sent",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "webhookUrl",
          "description": "The webhook URL to be notified",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The result object which contains the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "message": {
              "type": "string",
              "description": "A message indicating the result of the operation"
            },
            "method": {
              "type": "string",
              "description": "The method used for the transaction"
            },
            "params": {
              "type": "array",
              "items": {},
              "description": "An array of parameters used for the transaction"
            },
            "result": {
              "type": "object",
              "properties": {
                "jsonrpc": {
                  "type": "string",
                  "description": "The JSON-RPC version"
                },
                "id": {
                  "type": "integer",
                  "description": "The unique identifier for the request"
                },
                "result": {
                  "type": "string",
                  "description": "Hash of the transaction"
                }
              },
              "description": "The result object which contains the following fields:"
            }
          }
        }
      },
      "tags": [
        {
          "name": "qn"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/qn_sendRawTransactionWithWebhook"
      },
      "examples": [
        {
          "name": "qn_sendRawTransactionWithWebhook example",
          "params": [
            {
              "name": "signedTx",
              "value": "0x0000000000000000000000000000000000000000"
            },
            {
              "name": "webhookUrl",
              "value": "https://your-webhook-url.com"
            }
          ],
          "result": {
            "name": "qn_sendRawTransactionWithWebhook result",
            "value": "0x9fc76417374aa880d4449a1f7f31ec597f00b1f6f3dd2d66f4c9c6c445836d8b"
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Send Transaction Webhook Notifier",
      "url": "https://docs-demo.quiknode.pro"
    }
  ]
}