action payments_get_a_payment { label: "Find payment by ID" description: "Return information about the payment 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}" encoding: json input: { type: "object" properties: { paymentId: { type: "string" } } required: ["paymentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }