deploy
This commit is contained in:
42
skills/api-keys/SKILL.md
Normal file
42
skills/api-keys/SKILL.md
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
name: api-keys-routes
|
||||
description: Handle 3 OpenAPI operation(s) under /api-keys for the api keys route group.
|
||||
---
|
||||
|
||||
# api keys API Routes
|
||||
|
||||
Handle 3 OpenAPI operation(s) under /api-keys for the api keys 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
|
||||
|
||||
### post_api_keys
|
||||
|
||||
- Operation ID: `post_api_keys`
|
||||
- Route: `POST /api-keys`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a new API key
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_api_keys
|
||||
|
||||
- Operation ID: `get_api_keys`
|
||||
- Route: `GET /api-keys`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a list of API keys
|
||||
- Parameters:
|
||||
- `limit` in `query`
|
||||
- `after` in `query`
|
||||
- `before` in `query`
|
||||
|
||||
### delete_api_keys_api_key_id
|
||||
|
||||
- Operation ID: `delete_api_keys_api_key_id`
|
||||
- Route: `DELETE /api-keys/{api_key_id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Remove an existing API key
|
||||
- Parameters:
|
||||
- `api_key_id` in `path` required
|
||||
Reference in New Issue
Block a user