retention-series
Retrieve time-series user retention data in daily, weekly, or monthly units using the specified end date in YYYY-MM-DD format. Analyze retention trends for informed decision-making.
Instructions
Retrieves time-series data of user retention. Available in daily, weekly, and monthly units.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | End date in YYYY-MM-DD format. | |
unit | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "End date in YYYY-MM-DD format.",
"type": "string"
},
"unit": {
"enum": [
"DAY",
"WEEK",
"MONTH"
],
"type": "string"
}
},
"required": [
"unit"
],
"type": "object"
}