Hi everyone,
I’m stuck on an issue I haven’t been able to solve despite several attempts. I’m trying to automatically save responses from a Tally form into a Notion database using a Make scenario.
In Tally, I have a multiple-choice question. The response comes through as a simple array of strings (
["Forceps", "Ventouse"]
).
In Notion, the corresponding field is a multi_select property.
I understand that Notion expects the data to be formatted like this:
[
{ "name": "Forceps" },
{ "name": "Ventouse" }
]
I’ve tried several ways in Make to convert the array from Tally into the required object array format for Notion, but none of them worked. I keep getting an error during the database creation step, saying the Instrumentation
property is expected to be of type multi_select
.
I’ve attached screenshots showing:
- the JSON structure received from Tally with the
Instrumentation
field, - the configuration of the Notion module in Make with the relevant mapping,
- the runtime error message returned by Make.
What would be the correct way to convert a simple array into the proper object array format expected by Notion in this context?
Thanks a lot for your help