I am trying to add to a Notion record a Select value which is a string containing commas: “Technology, Information and Internet”.
It is failing with: The operation failed with an error. [400] Invalid select option, commas not allowed: Technology, Information and Internet
.
The issue is similar to https://community.make.com/t/how-can-i-map-correctly-a-notion-multi-select-field/8575Similar to: How can I map correctly a Notion Multi-Select field? but I do not intend to split the string into array parts.
I know why Notion has an issue with the commas. But how do I force Make to send this as a single string value?
-
If I wrap the value sent in double-quotes, I get a worse error:
The operation failed with an error. [400] body failed validation: body.properties.Industries.multi_select[0].name.length should be ≤
100, instead was
113.
-
If I wrap it in toString(), it fails similarly:
The operation failed with an error. [400] body failed validation: body.properties.Industries.multi_select[0].name.length should be ≤
100, instead was
110``
I suspect it may also fail with characters beside commas.