Sending data
When your customer submits the form, we call your API endpoint with the HTTP method which you set yourself. The request will always contain the following headers:
The body will contain JSON with your field names and the value entered by your customer. In case of a
GET method, the request will be query parameters. An example:
Your form:
The request body or query parameters to your endpoint:
Retrieving data
You can pre-fill your form by setting a retrieving data endpoint. You can choose between aGET or POST method.
The endpoint should return a JSON-object with the fields which you have specified. Any missing fields in your response will be considered as null and so left empty. Any extra fields which are not corresponding with any of your form fields, will be discarded.
The request will always contain the following headers:
Your form:
The response body:
JSON
