subscriptions.get
Retrieve a specific subscription from Ryft by providing its unique identifier to access subscription details and manage financial resources.
Instructions
Get a Ryft subscription by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/subscriptions.ts:68-73 (handler)Implementation and registration of the subscriptions.get tool.
registerTool( 'subscriptions.get', 'Get a Ryft subscription by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/subscriptions/${id}`), );