Monthly Active Users for Last 30 Days

GET https://{{instance_url}}/kpi/mau/data_series?length=7&ending_at=2018-06-28T23:59:59-05:00&app_id={{app_identifier}}

This endpoint allows you to retrieve a daily series of the total number of unique active users over a 30-day rolling window.

Response

Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "data" : [
        {
            "time" : (string) date as ISO 8601 date,
            "mau" : (int)
        },
        ...
    ]
}

Request Params

KeyDatatypeRequiredDescription
lengthnumber(Required) Integer

Max number of days before ending_at to include in the returned series - must be between 1 and 100 inclusive | | ending_at | string | | (Optional) DateTime (ISO 8601 string)

Point in time when the data series should end - defaults to time of the request | | app_id | string | | (Optional) String

App API identifier; if excluded, results for all apps in app group will be returned |

HEADERS

KeyDatatypeRequiredDescription
Authorizationstring