Get Tags from Integration Provider
Endpoint: GET /api/integrations/provider/{name}/tags
Retrieves the tags associated with an integration provider.
Path parameters
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| name | The name of the integration from which the tags are to be retrieved. | string | Required. |
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"
}
]