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
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
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}'
Updated about 1 month ago