action chaingateway_list_failed_ipns { label: "listFailedIPNs" description: "Returns all subscriptions/IPNs created with an account." provider: chaingateway method: POST path: "/listFailedIPNs" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } "Content-Type": { type: "string" } } required: ["Authorization", "Content-Type"] additionalProperties: false } output: { type: "object" required: ["failed_ipns", "ok"] properties: { failed_ipns: { type: "array" items: { type: "object" required: ["id", "timestamp", "ethereumaddress", "contractaddress", "amount", "url", "action"] properties: { action: { type: "string" } amount: { type: "string" } contractaddress: { type: "string" } ethereumaddress: { type: "string" } id: { type: "string" } timestamp: { type: "string" } url: { type: "string" } } } } ok: { type: "boolean" } } } }