62 lines
1.7 KiB
Markdown
62 lines
1.7 KiB
Markdown
---
|
|
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
|