mirror of
https://github.com/acaloiaro/kombo-ruby-sdk
synced 2026-07-21 10:12:21 +00:00
1.3 KiB
1.3 KiB
Kombo::PostIntegrationsIntegrationIdRelinkRequestBody
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| language | String | Language of the connection flow UI. | [optional][default to 'en'] |
| scope_config_id | String | Specify a scope config which the integration will start using once the reconnection flow has been completed. This can be useful if you want to update the permissions of an integration, but only want the change to take effect once the user has updated their API credentials to prevent sync issues. | [optional] |
| link_type | String | The type of link you want to create. `EMBEDDED` is for the embedded flow using the Kombo Connect SDK (these links are valid for 1 hour) and `MAGIC_LINK` is for magic links which you send out manually to customers (there are valid for 1 year). This defaults to `EMBEDDED`, which is our recommended method of implementing the connection flow for a seamless user experience. | [optional][default to 'EMBEDDED'] |
Example
require 'kombo_client'
instance = Kombo::PostIntegrationsIntegrationIdRelinkRequestBody.new(
language: null,
scope_config_id: null,
link_type: null
)