Skip to contents

Synchronizes the specified data source's schema between its external and its NocoDB-internal state via the POST /api/v2/meta/bases/{id_base}/meta-diff/{id_data_src} API endpoint.

Usage

sync_data_src(
  id_data_src,
  id_base = base_id(origin = origin, email = email, password = password),
  origin = funky::config_val("origin"),
  email = funky::config_val("email"),
  password = funky::config_val("password")
)

Arguments

id_data_src

character(1)
NocoDB data source identifier as returned by data_src_id().

id_base

character(1)
NocoDB base identifier as returned by base_id().

origin

character(1)
NocoDB server origin.

email

character(1)
E-mail address of the NocoDB user to authenticate with.

password

character(1)
Password of the NocoDB user to authenticate with.

Value

id_data_src, invisibly.

Details

This API endpoint does not support authentication via API tokens.

See also