v1

latestOpenAPI 3.0.32026-07-2639188178.2 KB
subscriptions to transactions

Patch wallets within subscription

This endpoint works by subscription ID. It patches wallets list within specific subscription.

NOTE: Consider all IDs as abstract strings, without making any assumptions about their format or relying on such assumptions. There is a non-zero probability that IDs may change in the future, and this should not result in any breaking changes.

patch/v1/tx-subscriptions/{subscription_id}/wallets

Path parameters

subscription_idstring required
Example:77e77447-1586-40e8-a75b-467ef939a0b1

ID of the subscription

Request body

addstring[]

Addresses of the wallets to add to subscription. Maximum 100 addresses per request.

removestring[]

Addresses of the wallets to remove from subscription. Maximum 100 addresses per request.

Example request

{
  "add": [
    "0x42b9df65b219b3dd36ff330a4dd8f327a6ada990"
  ],
  "remove": [
    "0x42b9df65b219b3dd36ff330a4dd8f327a6ada990"
  ]
}

Response

Successful callback processing