v1
latestOpenAPI 3.0.02026-07-135965404.0 KBForm
Get form data entries for a receive
Returns the form data entries for a specific form for a receive. Optional parameters can be included in the call to manage larger data sets.
get/forms/entries/{id}
Path parameters
idinteger required
ID of the form to retrieve entries for.
Query parameters
limitinteger
Limit of records to be returned (for pagination)
offsetinteger
Current offset of records (for pagination)
Headers
ev-api-keystring required
API Key required to make the API call.
ev-access-tokenstring required
Access token required to make the API call.
Response
Successful operation
Example response
{
"responseStatus": 200,
"totalResults": 2,
"returnedResults": 2,
"data": [
{
"id": 320721,
"type": "formEntry",
"attributes": {
"fields": [
{
"name": "Email Address",
"value": "test451@example.com",
"order": 1
}
],
"paths": [
"/example/test451@example.com/1.csv",
"/example/test451@example.com/2.csv"
],
"status": "completed",
"created": "2020-09-15T05:36:41-07:00",
"modified": "2020-09-16T05:36:44-07:00"
}
},
{
"id": 32021,
"type": "formEntry",
"attributes": {
"fields": [
{
"name": "Email Address",
"value": "test455@example.com",
"order": 1
}
],
"paths": [
"/example/test455@example.com/1.csv",
"/example/test455@example.com/2.csv"
],
"status": "completed",
"created": "2020-09-16T05:36:41-07:00",
"modified": "2020-09-17T05:36:44-07:00"
}
}
]
}