Last updated 2 months ago
Get usage of a tag in the configuration
Tag usage was retrieved successfully
Get all tags in the system
Tags retrieved successfully
1
const response = await fetch('/api/v4.0/conf/{config}/tags/{entry_id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "type": "text", "embeddings": [] }
const response = await fetch('/api/v4.0/conf/{config}/tags', { method: 'GET', headers: {}, }); const data = await response.json();
{ "total": 1, "items": [ "text" ] }