This commit is contained in:
a2a-platform
2026-06-27 01:05:11 +00:00
commit 85db61186e
28 changed files with 48472 additions and 0 deletions

41
skills/api-keys/SKILL.md Normal file
View File

@@ -0,0 +1,41 @@
---
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
### api_keys_controller_validate_api_key
- Operation ID: `api_keys_controller_validate_api_key`
- Route: `POST /api_keys/validations`
- Mode: WRITE
- Summary: Validate API key
- Body: JSON request body accepted.
### api_keys_controller_delete
- Operation ID: `api_keys_controller_delete`
- Route: `DELETE /api_keys/{id}`
- Mode: WRITE
- Summary: Delete an API key
- Parameters:
- `id` in `path` required
### api_keys_controller_expire
- Operation ID: `api_keys_controller_expire`
- Route: `POST /api_keys/{id}/expire`
- Mode: WRITE
- Summary: Expire an API key
- Parameters:
- `id` in `path` required
- Body: JSON request body accepted.