action payments_get_a_payment_refund { label: "Find payment refund by ID" description: "Return payment refund information by Refund ID The Authorisation token needs to be specified in the 'authorization' header as 'authorization: Bearer YOUR_API_KEY_HERE'" provider: payments method: GET path: "/v1/payments/{paymentId}/refunds/{refundId}" encoding: json input: { type: "object" properties: { paymentId: { type: "string" } refundId: { type: "string" } } required: ["paymentId", "refundId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }