GET https://api.actonsoftware.com/api/1/media/{id}/report/timeline
This endpoint will return a report for a media object with dates of actions.
Customers wanting to access our API via our gateway in the EU can use this link:
GET https://api-eu.actonsoftware.com/api/1/media/{id}/report/timeline
Parameters
| Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
|---|---|---|---|---|---|
| Authorization: | Header | False | Required | String | Insert your generated access token. ("Bearer {access token}") |
| id | Path | False | Required | String | Specify the ID of the media object. |
Response
[
{
"date": "09/30/2019",
"unique": 1,
"total": 1,
"known": 0,
"unknown": 1
},
{
"date": "10/07/2019",
"unique": 2,
"total": 2,
"known": 2,
"unknown": 0
}
]
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/media/u-48aaa2da-1381-4e4d-b942-e6c1b71b73bf/report/timeline -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"