Help with Bulk Write API - Accounts Module with custom layout

Help with Bulk Write API - Accounts Module with custom layout

We are trying to update our Accounts module via Bulk Write API for the first time, to test it we prepare a CSV file with only 2 records

Layout,id,IM_Balance,Ingram_Micro_Line_of_Credit
Zoho 3.0,1118734000025841001,1.000000,1.000000
Zoho 3.0,1118734000025841001,1.000000,2.000000

We have a custom Layout called Zoho 3.0, on the CSV we have the api names of custom fields of that custom layout.

We upload the file:



Then we try to create the job  but we are getting INTERNAL_SERVER_ERROR: 



Full Body of the request:
  1. {
  2.     "operation": "update",
  3.     "ignore_empty": true,
  4.     "callback": {
  5.         "url": "https://a2ktest.free.beeceptor.com",
  6.         "method": "post"
  7.     },
  8.     "resource": [
  9.         {
  10.             "type": "data",
  11.             "module": "Accounts",
  12.             "file_id": "3743390000002547001",
  13.             "field_mappings": [
  14.                 {
  15.                     "api_name": "Layout",
  16.                     "index": 0
  17.                 },
  18.                 {
  19.                     "api_name": "id",
  20.                     "index": 1
  21.                 },
  22.                 {
  23.                     "api_name": "IM_Balance",
  24.                     "index": 2
  25.                 },
  26.                 {
  27.                     "api_name": "Ingram_Micro_Line_of_Credit",
  28.                     "index": 3
  29.                 }
  30.             ],
  31.             "find_by": "id"
  32.         }
  33.     ]
  34. }
Are we missing something? how do you describe the layout on the CVS file?

Thanks for the help!