You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manually formatting data before sending to intercom is clunky and prone to errors. Data in the CSV can be ignored when sending if not explicitly included in the cmd line argument.
Solution:
Do the formatting in the input CSV so that nested data headers are of the format parent.child.
Example:
A CSV formatted such as:
company_id,custom_attributes.enabled
0,true
Requirements
Unflatten function to parse the CSV headers into parent/child objects appropriately.
Issue:
Manually formatting data before sending to intercom is clunky and prone to errors. Data in the CSV can be ignored when sending if not explicitly included in the cmd line argument.
Solution:
Do the formatting in the input CSV so that nested data headers are of the format
parent.child.Example:
A CSV formatted such as:
Requirements
Unflatten function to parse the CSV headers into parent/child objects appropriately.