Export or import NetSuite multiple select fields

  • NetSuite multiple select field types allow you to include multiple values in a single field. 
  • In a scheduled flow that uses a saved search, integrator.io exports the multiple select field as a string with each value separated by a comma.
  • In a real-time flow (one initiated by a webhook listener), integrator.io exports a multiple select field as an array of objects, and each object contains a selection from the list on the export record. If the field contains a list of records, then each object has an internal ID property and a name property.
 "custbody17": [      {        "internalid": "1524",        "name": "Aiden Somerhalder"      },      {        "internalid": "25",        "name": "Amy Nguyen"      }    ]

  • To map multiple values to a multiple select field, use either an array of the values (name or internal ID) or a string of comma-separated values without spaces. 

Leave a comment

Your email address will not be published. Required fields are marked *