Create, retrieve, update, and delete connector destinations for an organization.
Returns all configured destinations in the organization's workspace.
organization_id string required
The unique identifier of the organization (format: org_*).
Retrieve a single destination by ID.
destination_id string required
The destination ID.
Create a new destination.
name string required
Human-readable destination name.
destination_definition_id string required
The destination definition to use.
workspace_id string required
The workspace to create the destination in.
configuration object optional
Destination-specific configuration (connection details, credentials, etc.).
Partially update a destination's properties.
name string optional
Updated destination name.
configuration object optional
Partial configuration updates.
Permanently delete a destination. Returns 204 No Content on success.
A destination object containing destination_id, name, destination_definition_id, workspace_id, configuration, and destination_type.
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/destinations" \
-H "Authorization: Bearer $ACCESS_TOKEN"