accounts.get
Retrieve a specific Ryft account using its unique identifier to access financial resource details and manage payment operations.
Instructions
Get a Ryft account by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/accounts.ts:79-84 (handler)The 'accounts.get' tool registration and handler implementation. It uses the RyftHttpClient to fetch an account by its ID.
registerTool( 'accounts.get', 'Get a Ryft account by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/accounts/${id}`), );