deploy
This commit is contained in:
61
skills/contact-properties/SKILL.md
Normal file
61
skills/contact-properties/SKILL.md
Normal file
@@ -0,0 +1,61 @@
|
||||
---
|
||||
name: contact-properties-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /contact-properties for the contact properties route group.
|
||||
---
|
||||
|
||||
# contact properties API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /contact-properties for the contact properties 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_contact_properties
|
||||
|
||||
- Operation ID: `post_contact_properties`
|
||||
- Route: `POST /contact-properties`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a new contact property
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_contact_properties
|
||||
|
||||
- Operation ID: `get_contact_properties`
|
||||
- Route: `GET /contact-properties`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a list of contact properties
|
||||
- Parameters:
|
||||
- `limit` in `query`
|
||||
- `after` in `query`
|
||||
- `before` in `query`
|
||||
|
||||
### get_contact_properties_id
|
||||
|
||||
- Operation ID: `get_contact_properties_id`
|
||||
- Route: `GET /contact-properties/{id}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a single contact property
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
|
||||
### patch_contact_properties_id
|
||||
|
||||
- Operation ID: `patch_contact_properties_id`
|
||||
- Route: `PATCH /contact-properties/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update an existing contact property
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_contact_properties_id
|
||||
|
||||
- Operation ID: `delete_contact_properties_id`
|
||||
- Route: `DELETE /contact-properties/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Remove an existing contact property
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
Reference in New Issue
Block a user