deploy
This commit is contained in:
50
skills/payouts/SKILL.md
Normal file
50
skills/payouts/SKILL.md
Normal file
@@ -0,0 +1,50 @@
|
||||
---
|
||||
name: payouts-routes
|
||||
description: Handle 3 OpenAPI operation(s) under /v2/payouts for the payouts route group.
|
||||
---
|
||||
|
||||
# payouts API Routes
|
||||
|
||||
Handle 3 OpenAPI operation(s) under /v2/payouts for the payouts 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
|
||||
|
||||
### list_payouts
|
||||
|
||||
- Operation ID: `list_payouts`
|
||||
- Route: `GET /v2/payouts`
|
||||
- Mode: READ
|
||||
- Summary: ListPayouts
|
||||
- Parameters:
|
||||
- `location_id` in `query`
|
||||
- `status` in `query`
|
||||
- `begin_time` in `query`
|
||||
- `end_time` in `query`
|
||||
- `sort_order` in `query`
|
||||
- `cursor` in `query`
|
||||
- `limit` in `query`
|
||||
|
||||
### get_payout
|
||||
|
||||
- Operation ID: `get_payout`
|
||||
- Route: `GET /v2/payouts/{payout_id}`
|
||||
- Mode: READ
|
||||
- Summary: GetPayout
|
||||
- Parameters:
|
||||
- `payout_id` in `path` required
|
||||
|
||||
### list_payout_entries
|
||||
|
||||
- Operation ID: `list_payout_entries`
|
||||
- Route: `GET /v2/payouts/{payout_id}/payout-entries`
|
||||
- Mode: READ
|
||||
- Summary: ListPayoutEntries
|
||||
- Parameters:
|
||||
- `payout_id` in `path` required
|
||||
- `sort_order` in `query`
|
||||
- `cursor` in `query`
|
||||
- `limit` in `query`
|
||||
Reference in New Issue
Block a user