deploy
This commit is contained in:
49
skills/tracking-settings/SKILL.md
Normal file
49
skills/tracking-settings/SKILL.md
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
name: tracking-settings-routes
|
||||
description: Handle 3 OpenAPI operation(s) under /api/tracking-settings for the tracking settings route group.
|
||||
---
|
||||
|
||||
# tracking settings API Routes
|
||||
|
||||
Handle 3 OpenAPI operation(s) under /api/tracking-settings for the tracking settings 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_tracking_settings
|
||||
|
||||
- Operation ID: `get_tracking_settings`
|
||||
- Route: `GET /api/tracking-settings`
|
||||
- Mode: READ
|
||||
- Summary: Get Tracking Settings
|
||||
- Parameters:
|
||||
- `fields[tracking-setting]` in `query`
|
||||
- `page[cursor]` in `query`
|
||||
- `page[size]` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### get_tracking_setting
|
||||
|
||||
- Operation ID: `get_tracking_setting`
|
||||
- Route: `GET /api/tracking-settings/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Get Tracking Setting
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[tracking-setting]` in `query`
|
||||
- `revision` in `header` required
|
||||
|
||||
### update_tracking_setting
|
||||
|
||||
- Operation ID: `update_tracking_setting`
|
||||
- Route: `PATCH /api/tracking-settings/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update Tracking Setting
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- `fields[tracking-setting]` in `query`
|
||||
- `revision` in `header` required
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user