| Parameter | Type | Default | Description |
|---|---|---|---|
| per_page | integer | 100 | Number of results to be returned per request (100 is the maximum) |
| page_no | integer | 1 | Number of results page |
| period_start | string | null | String that represents period range start - must match format with reporting frequency |
| period_end | string | null | String that represents period range end - must match format with reporting frequency |
{
"periods": [
{
"period_string": "2020-02-10",
"value": 110,
"start_date": "2020-02-10 00:00",
"end_date": "2020-02-10 23:59"
},
{
"period_string": "2020-02-11",
"value": 110,
"start_date": "2020-02-11 00:00",
"end_date": "2020-02-11 23:59"
}
],
"meta": { "is_last_page": true }
}curl --location --request GET 'https://api.mpc.dev.placewise.com/v1/operations/footfall_reporting/reports' \
--header 'X-User-Agent: ApiDog' \
--header 'X-Product-Name: default' \
--header 'X-Loyalty-Club-Slug: infinity-mall' \
--header 'X-Customer: 447' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json'{}