deploy
This commit is contained in:
53
skills/webhook-endpoints/SKILL.md
Normal file
53
skills/webhook-endpoints/SKILL.md
Normal file
@@ -0,0 +1,53 @@
|
||||
---
|
||||
name: webhook-endpoints-routes
|
||||
description: Handle 4 OpenAPI operation(s) under /webhook_endpoints for the webhook endpoints route group.
|
||||
---
|
||||
|
||||
# webhook endpoints API Routes
|
||||
|
||||
Handle 4 OpenAPI operation(s) under /webhook_endpoints for the webhook endpoints 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
|
||||
|
||||
### webhook_endpoints_controller_list
|
||||
|
||||
- Operation ID: `webhook_endpoints_controller_list`
|
||||
- Route: `GET /webhook_endpoints`
|
||||
- Mode: READ
|
||||
- Summary: List Webhook Endpoints
|
||||
- Parameters:
|
||||
- `before` in `query`
|
||||
- `after` in `query`
|
||||
- `limit` in `query`
|
||||
- `order` in `query`
|
||||
|
||||
### webhook_endpoints_controller_create
|
||||
|
||||
- Operation ID: `webhook_endpoints_controller_create`
|
||||
- Route: `POST /webhook_endpoints`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a Webhook Endpoint
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### webhook_endpoints_controller_update
|
||||
|
||||
- Operation ID: `webhook_endpoints_controller_update`
|
||||
- Route: `PATCH /webhook_endpoints/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update a Webhook Endpoint
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### webhook_endpoints_controller_delete
|
||||
|
||||
- Operation ID: `webhook_endpoints_controller_delete`
|
||||
- Route: `DELETE /webhook_endpoints/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete a Webhook Endpoint
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
Reference in New Issue
Block a user