Stop Notifications

Stopping the monitoring of an address means that the Tatum system will no longer push notifications via webhooks for any changes related to that address.

To do so, you will have to find first the related Subscription_ID. After that, you may delete the subscription.

v3 Notifications

  1. Get all active v3 subscriptions
  2. Delete a v3 subscription

Example v3 deletion request:

curl --location --request DELETE 'https://api.tatum.io/v3/subscription/{subscription_ID}' \
--header 'x-api-key: {YOUR_API_KEY}'

v4 Notifications

  1. Get all active v4 subscriptions
  2. Delete a v4 subscription

Example v4 deletion request:

curl --location --request DELETE 'https://api.tatum.io/v4/subscription/{subscription_ID}?type=mainnet' \
--header 'x-api-key: {YOUR_API_KEY}'