deploy
This commit is contained in:
72
skills/template-universal-content/SKILL.md
Normal file
72
skills/template-universal-content/SKILL.md
Normal file
@@ -0,0 +1,72 @@
|
||||
---
|
||||
name: template-universal-content-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /api/template-universal-content for the template universal content route group.
|
||||
---
|
||||
|
||||
# template universal content API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /api/template-universal-content for the template universal content 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_all_universal_content
|
||||
|
||||
- Operation ID: `get_all_universal_content`
|
||||
- Route: `GET /api/template-universal-content`
|
||||
- Mode: READ
|
||||
- Summary: Get All Universal Content
|
||||
- Parameters:
|
||||
- `fields[template-universal-content]` in `query`
|
||||
- `filter` in `query`
|
||||
- `page[cursor]` in `query`
|
||||
- `page[size]` in `query`
|
||||
- `sort` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### create_universal_content
|
||||
|
||||
- Operation ID: `create_universal_content`
|
||||
- Route: `POST /api/template-universal-content`
|
||||
- Mode: WRITE
|
||||
- Summary: Create Universal Content
|
||||
- Parameters:
|
||||
- `fields[template-universal-content]` in `query`
|
||||
- `revision` in `header` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_universal_content
|
||||
|
||||
- Operation ID: `get_universal_content`
|
||||
- Route: `GET /api/template-universal-content/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Get Universal Content
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[template-universal-content]` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### update_universal_content
|
||||
|
||||
- Operation ID: `update_universal_content`
|
||||
- Route: `PATCH /api/template-universal-content/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update Universal Content
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[template-universal-content]` in `query`
|
||||
- `revision` in `header` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_universal_content
|
||||
|
||||
- Operation ID: `delete_universal_content`
|
||||
- Route: `DELETE /api/template-universal-content/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete Universal Content
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `revision` in `header` required
|
||||
Reference in New Issue
Block a user