Get Taxonomy

Retrieve details of a specific taxonomy.

Endpoint

GET /v1/workspaces/{workspaceId}/taxonomy/{taxonomyId}

Authentication

Requires API key authentication with a valid access token.

Request

curl -X GET \
  'https://api.sharely.ai/v1/workspaces/{workspaceId}/taxonomy/{taxonomyId}' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'organizationid: your-organization-id'

Response

{
  "id": "taxonomy-uuid",
  "workspaceId": "workspace-uuid",
  "name": "Medical Knowledge Taxonomy",
  "description": "Organized medical knowledge by specialty",
  "published": true,
  "createdAt": "2024-11-14T15:30:00Z",
  "updatedAt": "2024-11-14T16:00:00Z"
}

Related Endpoints