action n_auth_create_transaction { label: "Create a transaction to be approved within the current session." description: "Create a transaction for approval within the current session. Required permission: 'sessions'." provider: n_auth method: POST path: "/servers/{serverid}/sessions/transactions" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } serverid: { type: "string" } } required: ["X-nonce", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }