GET https://api.actonsoftware.com/api/1/page/{id}/report
This endpoint will return a report of a specific landing page.
Customers wanting to access our API via our gateway in the EU can use this link:
GET https://api-eu.actonsoftware.com/api/1/page/{id}/report
Parameters
| Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
|---|---|---|---|---|---|
| Authorization: | Header | False | Required | String (Bearer {access token}) | Insert your generated access token. ("Bearer {access token}") |
| id | Path | False | Required | String | Specify the ID of the landing page. |
Response
{
"unique_known_visits": 1,
"total_visits": 1,
"incoming_traffic": {
"Default": 1
}
}
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/page/p-0002/report -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"