Documentation

Make a new project or select an existing one.


Make a new form or select one from your projects.


From your form page, note the endpoint and the accesscode




To send data

Have the form POST on the above endpoint.

<form action ="{getform-endpoint}" method="POST">

     <label for="email">Your Email</ label>

     <input name="Email" id="emailtype="email">
     <button type="submit">Submit</button>

</form>

You can choose from.
  • firstname
  • middlename
  • lastname
  • phonenumber1
  • phonenumber2
  • phonenumber3
  • dob
  • email
  • address
  • city
  • country
  • state
  • message
Make sure the name attribute is exactly same as the fields you chose to include

To get data

Make a GET request to be same endpoint. Include the access code in the HTTP request header named as CODE

curl --header  "Code: <access_code>"  <endpoint>