Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterTypeDefaultRequiredDescription
columns_excludeOptional[List[str]][]FalseList of column names to exclude from the response.
columns_definitionOptional[List[DynamicField]][]FalseList of column definitions. Each definition defines how to display the cells of the column, and the label of the definition will be used as the new label for the column title. The field should match the original name of the column. These also set the order in which the columns will appear in the table, with the defined columns having priority over the undefined ones.
columns_pathstr-TruePath, from the root table, to the column names. The result of this path should be a list of text.
rows_pathstr-True

Path, from the root table, to the row values. The result of this path should be an array with all the rows for the table.

include_additional_cols

Optional[bool]TrueFalse

Toggles the additional_columns feature, if the option is active the table will be built using every column on columns_path except the excluded columns. If the option is inactive, the table will be built using only the columns in columns_definition.

...