Need Help with mapping, want to insert Child record to salesforce

I have created a flow with multiple exports, and at the end, I want to import data into Salesforce.

From the payload below, I need to insert all WOD records into Salesforce.

However, when mapping the output, the correct values do not appear. Please check the screenshot.

I set ‘One to Many’ to Yes and used the path “values”, but when I run the flow:

• No records are created.

• No errors are displayed.

Please help me troubleshoot this issue.

{
  "_PARENT": {},
  "JOB_NUMBER": "999999",
  "GLOBAL_ID": "{TEST-GLOBAL-ID-123}",
  "USER_NAME": "TEST_USER",
  "CHANGE_TYPE": "Sample Edit",
  "CHANGE_DATE_TIME": "2025-01-01T12:00:00",
  "CHANGE_DATE_TIME_UTC": "2025-01-01T17:00:00",
  "DETAIL_GLOBAL_ID": "{TEST-DETAIL-ID-456}",
  "NOTES@xdata.proxy": "WORK_ORDER_HIST('999999'%2C'%7BTEST-GLOBAL-ID-123%7D')/NOTES",
  "WO": [
    {
      "value": [
        {
          "JOB_NUMBER": "999999",
          "NOTES@xdata.proxy": "WORK_ORDER('999999')/NOTES"
        }
      ]
    }
  ],
  "user3": "TEST FIELD",
  "WOD": [
    {
      "JOB_NUMBER": "999999",
      "GAGE_SN": "ABC"
    },
    {
      "JOB_NUMBER": "999999",
      "GAGE_SN": "XYZ"
    }
  ]
}

Have you tried setting the ‘One to Many’ path as WOD.

From this post I am assuming that you are wanting each record in the WOD array to be entered in to Salesforce as individual records.

The ‘One to Many’ path is expecting you to provide the path to an array of records that it will then iterate through. Hence I do not see an array for values and that is why IO is not returning any data to your mappings.

Thank you,
Kelly

Thanks, @kellyizer , I have tried this already and tried again after your comment

After adding path WOD as the path value the Input is Blank

I run flow but Node is not processing Data

I have taken the sample data you provided above and used that to demo how I understand that you want the import setup

In the Salesforce import you would then configure the One to many “path to many” array as WOD

then when you save that and open the mapping screen your input data should show as follows

In the mapping fields you would now reference the data as needed to generate your input

Please try that and see if you are then able to get data to populate