deploy
This commit is contained in:
47
skills/audiences/SKILL.md
Normal file
47
skills/audiences/SKILL.md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
name: audiences-routes
|
||||
description: Handle 4 OpenAPI operation(s) under /audiences for the audiences route group.
|
||||
---
|
||||
|
||||
# audiences API Routes
|
||||
|
||||
Handle 4 OpenAPI operation(s) under /audiences for the audiences 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_audiences
|
||||
|
||||
- Operation ID: `post_audiences`
|
||||
- Route: `POST /audiences`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a list of contacts
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_audiences
|
||||
|
||||
- Operation ID: `get_audiences`
|
||||
- Route: `GET /audiences`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a list of audiences
|
||||
|
||||
### delete_audiences_id
|
||||
|
||||
- Operation ID: `delete_audiences_id`
|
||||
- Route: `DELETE /audiences/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Remove an existing audience
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
|
||||
### get_audiences_id
|
||||
|
||||
- Operation ID: `get_audiences_id`
|
||||
- Route: `GET /audiences/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a single audience
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
Reference in New Issue
Block a user