Files
shipengine-openapi-agent/skills/account/SKILL.md
a2a-platform baecd6f6c9 deploy
2026-06-27 01:04:02 +00:00

65 lines
1.8 KiB
Markdown

---
name: account-routes
description: Handle 6 OpenAPI operation(s) under /v1/account/settings for the account route group.
---
# account API Routes
Handle 6 OpenAPI operation(s) under /v1/account/settings for the account 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
### list_account_settings
- Operation ID: `list_account_settings`
- Route: `GET /v1/account/settings`
- Mode: READ
- Summary: List Account Settings
### list_account_images
- Operation ID: `list_account_images`
- Route: `GET /v1/account/settings/images`
- Mode: READ
- Summary: List Account Images
### create_account_image
- Operation ID: `create_account_image`
- Route: `POST /v1/account/settings/images`
- Mode: WRITE
- Summary: Create an Account Image
- Body: JSON request body accepted.
### get_account_settings_images_by_id
- Operation ID: `get_account_settings_images_by_id`
- Route: `GET /v1/account/settings/images/{label_image_id}`
- Mode: READ
- Summary: Get Account Image By ID
- Parameters:
- `label_image_id` in `path` required
### update_account_settings_images_by_id
- Operation ID: `update_account_settings_images_by_id`
- Route: `PUT /v1/account/settings/images/{label_image_id}`
- Mode: WRITE
- Summary: Update Account Image By ID
- Parameters:
- `label_image_id` in `path` required
- Body: JSON request body accepted.
### delete_account_image_by_id
- Operation ID: `delete_account_image_by_id`
- Route: `DELETE /v1/account/settings/images/{label_image_id}`
- Mode: WRITE
- Summary: Delete Account Image By Id
- Parameters:
- `label_image_id` in `path` required