action braze_monthly_active_users_for_last30_days { label: "Monthly Active Users for Last 30 Days" description: "This endpoint allows you to retrieve a daily series of the total number of unique active users over a 30-day rolling window.\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n \"message\": (required, string) the status of the export, returns 'success' when completed without errors,\n \"data\" : [\n {\n \"time\" : (string) date as ISO 8601 date,\n \"mau\" : (int)\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/kpi/mau/data_series" encoding: json input: { type: "object" properties: { app_id: { type: "string" } ending_at: { type: "string" } length: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }