deploy
This commit is contained in:
92
skills/tag-groups/SKILL.md
Normal file
92
skills/tag-groups/SKILL.md
Normal file
@@ -0,0 +1,92 @@
|
||||
---
|
||||
name: tag-groups-routes
|
||||
description: Handle 7 OpenAPI operation(s) under /api/tag-groups for the tag groups route group.
|
||||
---
|
||||
|
||||
# tag groups API Routes
|
||||
|
||||
Handle 7 OpenAPI operation(s) under /api/tag-groups for the tag groups 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_tag_groups
|
||||
|
||||
- Operation ID: `get_tag_groups`
|
||||
- Route: `GET /api/tag-groups`
|
||||
- Mode: READ
|
||||
- Summary: Get Tag Groups
|
||||
- Parameters:
|
||||
- `fields[tag-group]` in `query`
|
||||
- `filter` in `query`
|
||||
- `page[cursor]` in `query`
|
||||
- `page[size]` in `query`
|
||||
- `sort` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### create_tag_group
|
||||
|
||||
- Operation ID: `create_tag_group`
|
||||
- Route: `POST /api/tag-groups`
|
||||
- Mode: WRITE
|
||||
- Summary: Create Tag Group
|
||||
- Parameters:
|
||||
- `fields[tag-group]` in `query`
|
||||
- `revision` in `header` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_tag_group
|
||||
|
||||
- Operation ID: `get_tag_group`
|
||||
- Route: `GET /api/tag-groups/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Get Tag Group
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[tag-group]` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### update_tag_group
|
||||
|
||||
- Operation ID: `update_tag_group`
|
||||
- Route: `PATCH /api/tag-groups/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update Tag Group
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `revision` in `header` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_tag_group
|
||||
|
||||
- Operation ID: `delete_tag_group`
|
||||
- Route: `DELETE /api/tag-groups/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete Tag Group
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `revision` in `header` required
|
||||
|
||||
### get_tags_for_tag_group
|
||||
|
||||
- Operation ID: `get_tags_for_tag_group`
|
||||
- Route: `GET /api/tag-groups/{id}/tags`
|
||||
- Mode: READ
|
||||
- Summary: Get Tags for Tag Group
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[tag]` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### get_tag_ids_for_tag_group
|
||||
|
||||
- Operation ID: `get_tag_ids_for_tag_group`
|
||||
- Route: `GET /api/tag-groups/{id}/relationships/tags`
|
||||
- Mode: READ
|
||||
- Summary: Get Tag IDs for Tag Group
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `revision` in `header` required
|
||||
Reference in New Issue
Block a user