GET https://api.actonsoftware.com/api/1/form/{formid}/report/
This endpoint allows you to pull a report on a specified form.
Customers wanting to access our API via our gateway in the EU can use this link:
GET https://api-eu.actonsoftware.com/api/1/form/{formid}/report/
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | False | Required | String | Insert your generated access token. ("Bearer {access token}") |
formid | Path | False | Required | String | Specify the ID of the form. |
Response
{ "count": 1, "result": [ { "source": "Page:Exampletest", "submits": 4, "unique": 2, "views": 5, "percent": 80, "non_submitters": "1" } ] }
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/form/{formid}/report/ -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"