Hi guys,
I have a problem with the bulk writing API.
I have 2 modules. First module ("dataimport") is storing csv file uploads of users. The secound module ("Erzeugungsdaten") should store the data from those csv files.
My goal is that each entry in "Erzeugungsdaten" is linked to the file upload in "dataimport" module so I setup a lookup field.
So I created a workflow which runs after a csv file is uploade to the module "dataimport". This workflow triggers a function using the bulk write api and it works good when I not try to set a default value for the lookup field.
When I add the part where I like to link the imported rows to the lookup field I get the error that I need to define the "index" parameter which does't make sense in my case because it should be set as default value.
- {"status":"error","code":"MISSING_REQUIRED_KEY","message":"required key index for field LinkedDataimport is not found in request body.","details":{}}
Here my code where I define the default value:
- dataImportMap = Map();
- dataImportMap.put("api_name","LinkedDataimport");
- //dataImportMap.put("index",0);
- dataImportMap.put("find_by","id");
- dataImportMap.put("defaultValue",{"value":dataImportID});
- fieldMappingList.add(dataImportMap);
Hope someone of you has an idea how to fix it.
Best
Markus
PS: find attached the whole function