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>
<button type="submit">Submit</button>
</form>
- firstname
- middlename
- lastname
- phonenumber1
- phonenumber2
- phonenumber3
- dob
- address
- city
- country
- state
- message
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>