Skip to main content
WEBHOOK
wallet_action.earn_incentive_claim.rejected
{
  "type": "wallet_action.earn_incentive_claim.rejected",
  "wallet_action_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "wallet_id": "fmfdj6yqly31huorjqzq38zc",
  "action_type": "earn_incentive_claim",
  "status": "rejected",
  "chain": "base",
  "rewards": null,
  "failure_reason": {
    "message": "No claimable rewards found"
  },
  "steps": [
    {
      "type": "evm_transaction",
      "status": "rejected",
      "caip2": "eip155:8453",
      "transaction_hash": null,
      "failure_reason": {
        "message": "No claimable rewards found"
      }
    }
  ]
}

Body

application/json

Payload for the wallet_action.earn_incentive_claim.rejected webhook event.

type
enum<string>
required

The type of webhook event.

Available options:
wallet_action.earn_incentive_claim.rejected
wallet_action_id
string
required

The ID of the wallet action.

wallet_id
string
required

The ID of the wallet involved in the action.

action_type
enum<string>
required

Type of wallet action

Available options:
swap,
transfer,
earn_deposit,
earn_withdraw,
earn_incentive_claim
status
enum<string>
required

The status of the wallet action.

Available options:
pending,
succeeded,
rejected,
failed
chain
string
required

EVM chain name (e.g. "base", "ethereum").

rewards
EarnIncetiveClaimRewardEntry · object[] | null
required

Claimed reward tokens. Populated after the preparation step fetches from Merkl.

failure_reason
FailureReason · object
required

A description of why a wallet action (or a step within a wallet action) failed.

steps
(EVMTransactionWalletActionStep · object | EVMUserOperationWalletActionStep · object | SVMTransactionWalletActionStep · object)[]
required

The steps of the wallet action at the time of rejection.

A wallet action step consisting of an EVM transaction.

Response

200

Return a 200 status to indicate that the webhook was received successfully.