webhooks.get
Retrieve a specific webhook configuration from Ryft MCP using its unique identifier to access webhook details for payment processing and financial resource management.
Instructions
Get a Ryft webhook by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/webhooks.ts:30-35 (handler)The registration and handler implementation for the 'webhooks.get' MCP tool.
registerTool( 'webhooks.get', 'Get a Ryft webhook by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/webhooks/${id}`), );