Skip to content
Last updated

Create, retrieve, update, and delete tags for labeling and organizing connections.

List tags

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/tags

Returns all tags in the organization's workspace.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).


Get tag

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/tags/{tag_id}

Retrieve a single tag by ID.

Path Parameters

tag_id string required

The tag ID.


Create tag

POSThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/tags

Create a new tag for labeling connections.

Request Body

name string required

Tag display name.

workspace_id string required

The workspace to create the tag in.

color string optional

Hex color code (e.g. #FF5733).


Update tag

PATCHhttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/tags/{tag_id}

Partially update a tag's properties.

Request Body

name string optional

Updated tag name.

color string optional

Updated hex color code.


Delete tag

DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/tags/{tag_id}

Permanently delete a tag. Returns 204 No Content on success.


Returns

A tag object containing tag_id, name, color, and workspace_id.

cURL
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/tags" \
  -H "Authorization: Bearer $ACCESS_TOKEN"