Delete Connectors

delete/v1/connectors/{connector_id}

Removes a connector definition from the workspace catalog. This detaches the connector blueprint so it can no longer be used to spin up new workspace connections. Side effects: the connector row is deleted; in-flight syncs already running against existing workspace connections are not retroactively cancelled. Returns 204 with no body on success.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
connector_idstring <uuid>YesUUID of the connector to delete.e.g. 8f1d4a2e-6c3b-4f59-9b27-12ab34cd56ef

Request

cURL
curl -X DELETE https://api.wellapp.ai/v1/connectors/{connector_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

204Connector deleted. No content is returned.

401Missing or invalid bearer token.

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404No connector exists with the supplied id.

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}