Skip to contents

Updates the metadata of the specified table view column on a NocoDB server via its PATCH /api/v2/meta/views/{id_view}/columns/{id_view_col} API endpoint.

Usage

update_tbl_view_col(
  id_view_col,
  id_view,
  show = NULL,
  origin = funky::config_val("origin"),
  email = funky::config_val("email"),
  password = funky::config_val("password"),
  api_token = funky::config_val("api_token")
)

Arguments

id_view_col

character(1)
NocoDB table view column identifier as returned by tbl_view_col_id().

id_view

character(1)
NocoDB table view identifier as returned by tbl_view_id().

show

logical(1)
Whether or not to show the column in the specified view. Omitted if NULL.

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.

api_token

character(1)
NocoDB API token. Takes precedence over email and password if provided.

Value

id_view_col, invisibly.

See also

Other functions to manage NocoDB table views: base_ui_acl(), tbl_view_col_id(), tbl_view_cols(), tbl_view_id(), tbl_views(), update_base_ui_acl(), update_grid_view_col()