paymentSessions.get
Retrieve a specific payment session from Ryft MCP using its unique identifier to access transaction details and status.
Instructions
Get a Ryft payment session by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/payment-sessions.ts:73-78 (handler)Implementation of the paymentSessions.get tool, which retrieves a Ryft payment session by ID using the provided client.
registerTool( 'paymentSessions.get', 'Get a Ryft payment session by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/payment-sessions/${id}`), );