deploy
This commit is contained in:
64
skills/applications/SKILL.md
Normal file
64
skills/applications/SKILL.md
Normal file
@@ -0,0 +1,64 @@
|
||||
---
|
||||
name: applications-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /applications/{client_id} for the applications route group.
|
||||
---
|
||||
|
||||
# applications API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /applications/{client_id} for the applications 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
|
||||
|
||||
### apps_delete_authorization
|
||||
|
||||
- Operation ID: `apps_delete_authorization`
|
||||
- Route: `DELETE /applications/{client_id}/grant`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete an app authorization
|
||||
- Parameters:
|
||||
- `client_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### apps_check_token
|
||||
|
||||
- Operation ID: `apps_check_token`
|
||||
- Route: `POST /applications/{client_id}/token`
|
||||
- Mode: WRITE
|
||||
- Summary: Check a token
|
||||
- Parameters:
|
||||
- `client_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### apps_reset_token
|
||||
|
||||
- Operation ID: `apps_reset_token`
|
||||
- Route: `PATCH /applications/{client_id}/token`
|
||||
- Mode: WRITE
|
||||
- Summary: Reset a token
|
||||
- Parameters:
|
||||
- `client_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### apps_delete_token
|
||||
|
||||
- Operation ID: `apps_delete_token`
|
||||
- Route: `DELETE /applications/{client_id}/token`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete an app token
|
||||
- Parameters:
|
||||
- `client_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### apps_scope_token
|
||||
|
||||
- Operation ID: `apps_scope_token`
|
||||
- Route: `POST /applications/{client_id}/token/scoped`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a scoped access token
|
||||
- Parameters:
|
||||
- `client_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user