action chaingateway_unsubscribe_address { label: "unsubscribeAddress" description: "Deletes an existing subscription/IPN for the given address (and contractaddress)." provider: chaingateway method: POST path: "/unsubscribeAddress" 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", "deleted", "ethereumaddress", "ok", "url"] properties: { contractaddress: { type: "string" } deleted: { type: "boolean" } ethereumaddress: { type: "string" } ok: { type: "boolean" } url: { type: "string" } } } }