deploy
This commit is contained in:
63
skills/bank-accounts/SKILL.md
Normal file
63
skills/bank-accounts/SKILL.md
Normal file
@@ -0,0 +1,63 @@
|
||||
---
|
||||
name: bank-accounts-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /bank_accounts for the bank accounts route group.
|
||||
---
|
||||
|
||||
# bank accounts API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /bank_accounts for the bank accounts route group.
|
||||
|
||||
Use the generated operation tools to make real API calls. Do not invent API responses.
|
||||
If a tool reports missing setup, return the exact setup field name to the caller.
|
||||
For write, update, or delete operations, state the intended action before calling the tool.
|
||||
|
||||
## Operations
|
||||
|
||||
### bank_account_verify
|
||||
|
||||
- Operation ID: `bank_account_verify`
|
||||
- Route: `POST /bank_accounts/{bank_id}/verify`
|
||||
- Mode: WRITE
|
||||
- Summary: Verify
|
||||
- Parameters:
|
||||
- `bank_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### bank_account_retrieve
|
||||
|
||||
- Operation ID: `bank_account_retrieve`
|
||||
- Route: `GET /bank_accounts/{bank_id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve
|
||||
- Parameters:
|
||||
- `bank_id` in `path` required
|
||||
|
||||
### bank_account_delete
|
||||
|
||||
- Operation ID: `bank_account_delete`
|
||||
- Route: `DELETE /bank_accounts/{bank_id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete
|
||||
- Parameters:
|
||||
- `bank_id` in `path` required
|
||||
|
||||
### bank_accounts_list
|
||||
|
||||
- Operation ID: `bank_accounts_list`
|
||||
- Route: `GET /bank_accounts`
|
||||
- Mode: READ
|
||||
- Summary: List
|
||||
- Parameters:
|
||||
- `limit` in `query`
|
||||
- `before/after` in `query`
|
||||
- `include` in `query`
|
||||
- `date_created` in `query`
|
||||
- `metadata` in `query`
|
||||
|
||||
### bank_account_create
|
||||
|
||||
- Operation ID: `bank_account_create`
|
||||
- Route: `POST /bank_accounts`
|
||||
- Mode: WRITE
|
||||
- Summary: Create
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user