Parking
View as MarkdownEndpoints for retrieving parking metrics and domain performance data.
Path Parameters
An identifier for a customer. A special alias MY is supported when accessing the authenticated customer's own data
Query Parameters
Start of range indicating what time-frame should be returned, inclusive. ISO 8601 date YYYY-MM-DD in PT. Default value is the day before current date
dateEnd of range indicating what time-frame should be returned, inclusive. ISO 8601 date YYYY-MM-DD in PT. Default value is the day before current date
dateMaximum number of items to return
1 <= value <= 20020Number of results to skip for pagination
0 <= value0Header Parameters
A unique identifier for the request
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/customers/string/parking/metrics"{ "currencyId": "USD", "metrics": [ { "adClickCount": 4, "periodPtz": "2020-02-05", "revenue": 4000000, "visitCount": 22 } ], "pagination": { "first": "string", "last": "string", "next": "string", "previous": "string", "total": 0 }}Path Parameters
An identifier for a customer. A special alias MY is supported when accessing the authenticated customer's own data
Query Parameters
Start of range indicating what time-frame should be returned, inclusive. ISO 8601 date YYYY-MM-DD
dateEnd of range indicating what time-frame should be returned, inclusive. ISO 8601 date YYYY-MM-DD
dateAn array of domains to filter the results. If this filter is not provided, all domains will be returned
represent search keyword filtering domains. If not null, domains will be ignored
Unique identifier for the portfolio to filter the results. If not provided, all domains within all porfolios will be returned
uuidMaximum number of items to return
1 <= value <= 20020Number of results to skip for pagination
0 <= value0Header Parameters
A unique identifier for the request
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/customers/string/parking/metricsByDomain?startDate=2019-08-24&endDate=2019-08-24"{ "currencyId": "USD", "metrics": [ { "adClickCount": 3, "domain": "example.com", "pageViewCount": 4, "revenue": 3000000, "visitCount": 30 } ], "pagination": { "first": "string", "last": "string", "next": "string", "previous": "string", "total": 0 }, "startDate": "string", "endDate": "string"}Last updated on
How is this guide?