deploy
This commit is contained in:
61
skills/snap-packs/SKILL.md
Normal file
61
skills/snap-packs/SKILL.md
Normal file
@@ -0,0 +1,61 @@
|
||||
---
|
||||
name: snap-packs-routes
|
||||
description: Handle 4 OpenAPI operation(s) under /snap_packs for the snap packs route group.
|
||||
---
|
||||
|
||||
# snap packs API Routes
|
||||
|
||||
Handle 4 OpenAPI operation(s) under /snap_packs for the snap packs 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
|
||||
|
||||
### snap_pack_retrieve
|
||||
|
||||
- Operation ID: `snap_pack_retrieve`
|
||||
- Route: `GET /snap_packs/{snap_pack_id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve
|
||||
- Parameters:
|
||||
- `snap_pack_id` in `path` required
|
||||
|
||||
### snap_pack_delete
|
||||
|
||||
- Operation ID: `snap_pack_delete`
|
||||
- Route: `DELETE /snap_packs/{snap_pack_id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete
|
||||
- Parameters:
|
||||
- `snap_pack_id` in `path` required
|
||||
|
||||
### snap_packs_list
|
||||
|
||||
- Operation ID: `snap_packs_list`
|
||||
- Route: `GET /snap_packs`
|
||||
- Mode: READ
|
||||
- Summary: List
|
||||
- Parameters:
|
||||
- `limit` in `query`
|
||||
- `before/after` in `query`
|
||||
- `include` in `query`
|
||||
- `date_created` in `query`
|
||||
- `metadata` in `query`
|
||||
- `send_date` in `query`
|
||||
- `mail_type` in `query`
|
||||
- `sort_by` in `query`
|
||||
- `campaign_id` in `query`
|
||||
- `status` in `query`
|
||||
|
||||
### snap_pack_create
|
||||
|
||||
- Operation ID: `snap_pack_create`
|
||||
- Route: `POST /snap_packs`
|
||||
- Mode: WRITE
|
||||
- Summary: Create
|
||||
- Parameters:
|
||||
- `Idempotency-Key` in `header`
|
||||
- `idempotency_key` in `query`
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user