API ReferenceConnections

Delete specific connection

Deletes a connection for the authenticated user, identified by the connection ID. Also deletes associated data from Qdrant.

DELETE
/api/connections/{id}

Authorization

AuthorizationRequiredBearer <token>

Bearer token authentication required

In: header

Path Parameters

idRequiredstring

The unique identifier of the connection to delete

Query Parameters

waitboolean

If true, waits for the deletion operation in Qdrant to complete before returning. Defaults to false.

curl -X DELETE "https://app.dcup.dev/api/connections/123" \
  -H "Authorization: Bearer <token>"

Connection deleted successfully

{
  "code": "ok",
  "message": "Connection has been successfully deleted"
}