Reconnect

[POST] .../v1/connectedintegration/reconnect

Reconnects an integration. 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. Returns OkResult without a payload after reconnecting and notifying the integration. The request body is required and must provide connected_integration_id. The current request user must have permission to manage other users' public integrations; missing body, missing identifier, unresolved integration, reconnect/notification failure and storage errors are returned as HTTP 200 ErrorResult.

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
}