I got a problem, i’m using the “intercom” API with API connector to create a contact with custom_attributes.
the probleme is this custom_attributes wait a boolen (true / false) but Bubble only permit me to send a yes / no by using checkbox is checked.
is there a solution to convert those yes / no to true / false.
there is no error , when i use my api call in the workflow , i see with step-by-step run that my yes/no data are send but in Intercom all the parameters are set as true even if i set them on no.
One method that I’ve done before is after your expression, add :format as text and for yes, true, for no, false. That’s solved this problem for me in the past.
ok so i created a custom state in text type that change is value on input checkbox is check or not and i send the value of this custom state as a text instead of a boolean, and it worked …
i also tried to :format as text and it also worked.
so it look like intercom API don"t accept boolean or somehting like that … i don’t know.