[POST] .../v1/connectedintegration/reconnect
Reconnects an integration. Use this method to replace the token/connection identifier of a replicated connected integration while keeping REGOS references to the integration in account settings, firm settings and dashboard widgets synchronized. The method performs the reconnect workflow through the integration persistent layer and external integration notification, then returns a standard OkResult with no payload on success. The request body is required and must provide either connected_integration_id or the deprecated key; connected_integration_id takes priority when both fields are sent. The current request user must have permission to manage other users' public integrations; missing body, missing identifier, more than one match by deprecated key, unresolved integration, reconnect/notification failure and database failures are returned as HTTP 200 ErrorResult business errors.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| connected_integration_id | String | Optional | Connected integration ID. Takes priority over key when both fields are passed. |
Request Example
{
"connected_integration_id": "c98210addc4f4e1bb50b17a8c1299a37"
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
Response Example
{
"ok": true,
"result": null
}