I am trying to copy from one database into another. I select a query from database 1, table A and insert into database 2, table A.
This works fine for "Table A"...but is failing for "Table B"...
However, when I iterate through the list and call "addRow" on a record by record basis the data can be loaded.
Here are my API parameters for the IMPORT:
bulk_params={'ZOHO_ACTION':'IMPORT', 'ZOHO_API_VERSION':'1.0', 'ZOHO_OUTPUT_FORMAT':'JSON', "authtoken": Config.AUTHTOKEN,
'ZOHO_ERROR_FORMAT':'JSON', 'ZOHO_AUTO_IDENTIFY': True, 'ZOHO_ON_IMPORT_ERROR': "ABORT",
'ZOHO_IMPORT_FILETYPE': 'JSON', 'ZOHO_IMPORT_TYPE': "APPEND",
'ZOHO_CREATE_TABLE': False}