get_partner_complete_analytics
Fetch detailed analytics for a partner, including key metrics like gallery performance, sales, and audience insights, over specified time periods such as four weeks, sixteen weeks, or one year.
Instructions
Get comprehensive analytics overview for a partner including all major metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
partnerId | Yes | Partner ID to get complete analytics for | |
period | No | Time period for all analytics data | FOUR_WEEKS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"partnerId": {
"description": "Partner ID to get complete analytics for",
"type": "string"
},
"period": {
"default": "FOUR_WEEKS",
"description": "Time period for all analytics data",
"enum": [
"FOUR_WEEKS",
"SIXTEEN_WEEKS",
"ONE_YEAR"
],
"type": "string"
}
},
"required": [
"partnerId"
],
"type": "object"
}