Skip to main content

Get Tags from Integration Provider

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

Retrieves the tags associated with an integration provider.

Path parameters

ParameterDescriptionTypeRequired/ Optional
nameThe name of the integration from which the tags are to be retrieved.stringRequired.

Response

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

Examples

Get tags from an integration provider

Request

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

Response

[
{
"key": "team",
"value": "docs"
},
{
"key": "team",
"value": "marketing"
}
]