action tokenjay_get_payment_state { label: "Returns the state of a payment request. Please note that payment requests are purged after some time, so persist the state at your side when needed" provider: tokenjay method: GET path: "/payment/state/{requestId}" encoding: json input: { type: "object" properties: { requestId: { type: "string" } } required: ["requestId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }