QuestionQ51
Marketing Cloud ChannelsA developer is building a CloudPage that accepts secure parameters through an email link and submits those parameters to another CloudPage for a data upsert. The page currently captures an Appointment ID parameter passed to it and assigns the value to the variable @apptId. The developer does NOT want the Appointment ID to be visible to anyone using the form.
What is the best method to make sure the parameters are passed successfully to the data upsert page?
- A <form action="%%=CloudPagesURL(123,'apptId',@apptId)=%%" method="post">
- B <input id="apptId" type="textarea" value="%%=v(@apptId)=%%" readonly>
- C <input id="apptId" type="textarea" value="%%=v(@apptId)=%%" hidden>
Community Discussion