Skip to main content

Delete Tags from Integration Resource

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

Delete 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 deleted, which can be:
  • the model name for AI/LLMs
  • the index name for databases
  • the table name for RDBMS
stringRequired.

Request Body

The request body should be an array of tag objects.

ParameterDescriptionTypeRequired/ Optional
keyThe tag key to be removed.stringRequired.
valueThe tag value to be removed.stringRequired.

Response

Returns 200 OK, indicating that tags have been deleted from the integration resource.

Examples

Delete a tag from an integration resource

Request

curl -X 'DELETE' \
'https://<YOUR-SERVER-URL>/api/integrations/provider/openAI/integration/gpt-4o/tags' \
-H 'accept: */*' \
-H 'X-Authorization: <TOKEN>' \
-H 'Content-Type: application/json' \
-d '[
{
"key": "test",
"value": "tag"
}
]'

Response

Returns 200 OK, indicating that the tag has been deleted from the resource.