Skip to main content
PUT
/
v1
/
webhooks
/
feed
/
{uid}
Update Feed Webhook
curl --request PUT \
  --url https://api.clicker.xyz/v1/webhooks/feed/{uid} \
  --header 'Content-Type: application/json' \
  --data '
{
  "walletAddresses": [
    "0xa4e221aa5a7ba51b5d5c7d5c923bfb9bcebcb252"
  ],
  "destinationUrl": "<string>",
  "addWalletAddresses": [
    "0xa4e221aa5a7ba51b5d5c7d5c923bfb9bcebcb252"
  ],
  "removeWalletAddresses": [
    "0xa4e221aa5a7ba51b5d5c7d5c923bfb9bcebcb252"
  ]
}
'
{
  "destinationUrl": "<string>",
  "uid": "<string>",
  "secret": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

Body

application/json
walletAddresses
string[]

A list of addresses to replace the webhook list.

The address / public key.

destinationUrl
string
addWalletAddresses
string[]

A list of addresses to append to the webhook list.

The address / public key.

removeWalletAddresses
string[]

A list of addresses to remove from the webhook list.

The address / public key.

Response

200

destinationUrl
string
required
uid
string
required
secret
string

Be sure to save this value, as it’s only returned after creating a webhook!