Create, retrieve, update, and delete connector destination definitions for an organization.
Returns all available destination definitions in the organization's workspace.
organization_id string required
The unique identifier of the organization (format: org_*).
Retrieve a single destination definition by ID.
definition_id string required
The destination definition ID.
Create a custom destination definition.
name string required
Definition name.
docker_repository string optional
Docker repository for the connector image.
docker_image_tag string optional
Docker image tag / version.
documentation_url string optional
URL to the connector documentation.
Update an existing destination definition.
name string optional
Updated definition name.
docker_image_tag string optional
Updated Docker image tag.
documentation_url string optional
Updated documentation URL.
Permanently delete a destination definition. Returns 204 No Content on success.
A destination definition object containing destination_definition_id, name, docker_repository, docker_image_tag, documentation_url, and icon.
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/destination-definitions" \
-H "Authorization: Bearer $ACCESS_TOKEN"