action chaingateway_subscribe_address { label: "subscribeAddress" description: "Creates a new subscription/IPN for the given address (and contractaddress). You will receive a notification to the given url every time a deposit is received. Unsubscribe the address before sending tokens/ETH from it or you won't get reliable notifications anymore. \n" provider: chaingateway method: POST path: "/subscribeAddress" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } contractaddress: { type: "string" } ethereumaddress: { type: "string" } url: { type: "string" } } required: ["Authorization", "contractaddress", "ethereumaddress", "url"] additionalProperties: false } output: { type: "object" required: ["contractaddress", "ethereumaddress", "ok", "url"] properties: { contractaddress: { type: "string" } ethereumaddress: { type: "string" } ok: { type: "boolean" } url: { type: "string" } } } }