Skip to main content

Delete Integration Resource

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

Deletes an integration resource from Conductor cluster. Integration resources apply to AI/LLMs, vector databases, and RDBMS, where the resources are models, indexes, and tables respectively.

Path Parameters

ParameterDescriptionTypeRequired/ Optional
nameThe name of the integration resource to delete. 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 to delete, which can be:
  • the model name for AI/LLMs
  • the index name for databases
  • the table name for RDBMS
stringRequired.

Response

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

Examples

Delete an integration resource

The following request deletes the gpt-4o model resource from the openAI integration.

Request

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

Response

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