deploy
This commit is contained in:
97
skills/application-fees/SKILL.md
Normal file
97
skills/application-fees/SKILL.md
Normal file
@@ -0,0 +1,97 @@
|
||||
---
|
||||
name: application-fees-routes
|
||||
description: Handle 7 OpenAPI operation(s) under /v1/application_fees for the application fees route group.
|
||||
---
|
||||
|
||||
# application fees API Routes
|
||||
|
||||
Handle 7 OpenAPI operation(s) under /v1/application_fees for the application fees 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
|
||||
|
||||
### get_application_fees
|
||||
|
||||
- Operation ID: `get_application_fees`
|
||||
- Route: `GET /v1/application_fees`
|
||||
- Mode: READ
|
||||
- Summary: List all application fees
|
||||
- Parameters:
|
||||
- `charge` in `query`
|
||||
- `created` in `query`
|
||||
- `ending_before` in `query`
|
||||
- `expand` in `query`
|
||||
- `limit` in `query`
|
||||
- `starting_after` in `query`
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_application_fees_fee_refunds_id
|
||||
|
||||
- Operation ID: `get_application_fees_fee_refunds_id`
|
||||
- Route: `GET /v1/application_fees/{fee}/refunds/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve an application fee refund
|
||||
- Parameters:
|
||||
- `expand` in `query`
|
||||
- `fee` in `path` required
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_application_fees_fee_refunds_id
|
||||
|
||||
- Operation ID: `post_application_fees_fee_refunds_id`
|
||||
- Route: `POST /v1/application_fees/{fee}/refunds/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update an application fee refund
|
||||
- Parameters:
|
||||
- `fee` in `path` required
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_application_fees_id
|
||||
|
||||
- Operation ID: `get_application_fees_id`
|
||||
- Route: `GET /v1/application_fees/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve an application fee
|
||||
- Parameters:
|
||||
- `expand` in `query`
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_application_fees_id_refund
|
||||
|
||||
- Operation ID: `post_application_fees_id_refund`
|
||||
- Route: `POST /v1/application_fees/{id}/refund`
|
||||
- Mode: WRITE
|
||||
- Summary: PostApplicationFeesIdRefund
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_application_fees_id_refunds
|
||||
|
||||
- Operation ID: `get_application_fees_id_refunds`
|
||||
- Route: `GET /v1/application_fees/{id}/refunds`
|
||||
- Mode: READ
|
||||
- Summary: List all application fee refunds
|
||||
- Parameters:
|
||||
- `ending_before` in `query`
|
||||
- `expand` in `query`
|
||||
- `id` in `path` required
|
||||
- `limit` in `query`
|
||||
- `starting_after` in `query`
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_application_fees_id_refunds
|
||||
|
||||
- Operation ID: `post_application_fees_id_refunds`
|
||||
- Route: `POST /v1/application_fees/{id}/refunds`
|
||||
- Mode: WRITE
|
||||
- Summary: Create an application fee refund
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user