APIs & Integrations

Not applicable

Form field submission with multiple values

SOLVE

I was wondering if it is currently allowed to submit a form field with multiple values?

i.e something along the lines of:

&property1=value1,value2&property2=value3

0 Upvotes
1 Accepted solution
dhirajpandey
Solution
Participant | Diamond Partner
Participant | Diamond Partner

Form field submission with multiple values

SOLVE

Yes. You can submit multiple values for a field. Use this format:
{
"property1": "value1;value2"
}

basically join the values with semicolon.

View solution in original post

1 Reply 1
dhirajpandey
Solution
Participant | Diamond Partner
Participant | Diamond Partner

Form field submission with multiple values

SOLVE

Yes. You can submit multiple values for a field. Use this format:
{
"property1": "value1;value2"
}

basically join the values with semicolon.