if __name__ == '__main__':
metadata_fields = {
"xip.reference": "*", "xip.title": "", "xip.description": "", "xip.document_type": "*", "xip.parent_hierarchy": f"{folder.reference}",
"xip.security_descriptor": "*",
"xip.identifier": "", "xip.bitstream_names_r_Preservation": ""}
content.search_callback(content.ReportProgressCallBack())
content.search_index_filter_csv("%", "assets.csv", metadata_fields) [error code:400]
content.search_index_filter_csv("%", csv_file="assets.csv", metadata_fields) [SyntaxError: positional argument follows keyword argument]
content.search_index_filter_csv("%", csv_file="assets.csv", list_indexes=metadata_fields) [TypeError: ContentAPI.search_index_filter_csv() got an unexpected keyword argument 'list_indexes']
Thank you