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