action chaingateway_resend_failed_ipn { label: "resendFailedIPN" description: "Returns all subscriptions/IPNs created with an account." provider: chaingateway method: POST path: "/resendFailedIPN" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } id: { type: "integer" format: "int32" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" required: ["id", "ok"] properties: { id: { type: "integer" format: "int32" } ok: { type: "boolean" } } } }