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
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| name | The 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. | string | Required. |
| integration_name | The name of the specific resource to delete, which can be:
| string | Required. |
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.