This endpoint allows you to unsubscribe notifications for a wallet
Chains Supported:
Mainnet: Ethereum, BSC, Matic, Celo, Avalanche, Xinfin, Klaytn, Kadena, Velas, Cronos, Fuse, Solana, Fantom, Arbitrum, Aurora.
Testnet: bsc-testnet, klaytn-testnet and polygon-testnet(mumbai-testnet)
In order to use notifications for testnets use
https://testnet-notify.unmarshal.com/v1/{address}/unsubscribe
curl -i -X POST \ https://notify.unmarshal.com/v1/:address/unsubscribe \ -H 'x-api-key: YOUR_API_KEY_HERE'
This endpoint allows you to bulk unsubscribe notifications for a wallet which were subscribed through firebase
Chains Supported:
Mainnet: Ethereum, BSC, Matic, Celo, Avalanche, Xinfin, Klaytn, Kadena, Velas, Cronos, Fuse, Solana, Fantom, Arbitrum, Aurora.
Testnet: bsc-testnet, klaytn-testnet and polygon-testnet(mumbai-testnet)
In order to use notifications for testnets use
https://testnet-notify.unmarshal.com/v1/subscriptions/firebase/unsubscribe
along with all required body.
unmarshal.Notifications
.Firebase.Unsubscribe({
deviceId: "deviceId",
addresses: ["demo.eth"],
}).then(({data}) => console.log(data))
{- "device_id": "c5Pi9VESR1SmqQMTKu4e-u:APA91bEp_UGNyA_mDe3ranGJAnmerNnzahe753czJm4aklpVoSTNFv9GV8PmrdVFJPk5eHb2POMWaga_nxaz_pa1-7ltX_BoAEWu-BRGpM2O0rlyJIdmFW68CwCZLlm2Kc4hOn-N6bVV",
- "addresses": [
- "bluzelle172dp0c9n0nd7hlck5z9jzz8tqnkw7zuav4dp78",
- "bnxuljz4rdih7jolvscnqphq3zinyuzd5rjahxaefbj7fxgkrzy4nb267e",
- "0x7c8ff94c43e464eca8eb044266cfdf1a2b8c38b6",
- "one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w",
- "erd1g5znpnjs9jtqultyj9enlv5nrsel0e83cv7r3hsyjnv93caxmz5q3zjcdd",
- "8rdvyscbrqervshh6dq2ywhfgx7qwasylan3cbipys71"
]
}
This endpoint allows you to bulk unsubscribe notifications for a wallet which were subscribed through webhook
Chains Supported:
Mainnet: Ethereum, BSC, Matic, Celo, Avalanche, Xinfin, Klaytn, Kadena, Velas, Cronos, Fuse, Solana, Fantom, Arbitrum, Aurora.
Testnet: bsc-testnet, klaytn-testnet and polygon-testnet(mumbai-testnet)
In order to use notifications for testnets use
https://testnet-notify.unmarshal.com/v1/subscriptions/webhook/unsubscribe
along with all required body.
unmarshal.Notifications
.Webhook.Unsubscribe({
webhookUrl: "http://localhost:8080",
addresses: ["demo.eth"],
}).then(({data}) => console.log(data))
{- "addresses": [
- "0xa80240eb5d7e05d3f250cf000eec0891d00b51cc"
]
}