Skip to main content

Get Tags from Integration Resource

Endpoint: GET /api/integrations/provider/{name}/integration/{integration_name}/tags

Retreive tags from an integration resource.

Path parameters

ParameterDescriptionTypeRequired/ Optional
nameThe name of the integration which contains the resources. This is the integration name, not the provider name. For example, if you have created an OpenAI integration named openAI, use openAI.stringRequired.
integration_nameThe name of the specific resource from which tags are to be retrieved, which can be:
  • the model name for AI/LLMs
  • the index name for databases
  • the table name for RDBMS
stringRequired.

Response

Returns an array of tag objects, each containing a key-value pair.

Examples

Get tags from an integration resource

Request

curl -X 'GET' \
'https://<YOUR-SERVER-URL>/api/integrations/provider/openAI/integration/gpt-4o/tags' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'

Response

[
{
"key": "test",
"value": "tag"
}
]