action tokenjay_add_payment_request { label: "Creates a new payment request. Will return request id to check for transaction state and ergopay url to show the user as QR code" provider: tokenjay method: POST path: "/payment/addrequest" encoding: json input: { type: "object" required: ["nanoErg", "receiverAddress"] properties: { message: { type: "string" } nanoErg: { type: "integer" format: "int64" } receiverAddress: { type: "string" } senderAddress: { type: "string" } tokenId: { type: "string" } tokenRawAmount: { type: "integer" format: "int64" } } } output: { type: "object" additionalProperties: true } }