get_partner_top_content
Retrieve top-performing content (artworks, shows, artists, or viewing rooms) by views for a specific partner ID, within a defined period and result count. Supports focused content ranking analytics.
Instructions
Get top-performing content (artworks, shows, artists, or viewing rooms) by views
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | Number of top results to return | |
objectType | No | Type of content to rank | ARTWORK |
partnerId | Yes | Partner ID to get top content for | |
period | No | Time period for content rankings | FOUR_WEEKS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"first": {
"default": 10,
"description": "Number of top results to return",
"type": "number"
},
"objectType": {
"default": "ARTWORK",
"description": "Type of content to rank",
"enum": [
"ARTWORK",
"SHOW",
"ARTIST",
"VIEWING_ROOM"
],
"type": "string"
},
"partnerId": {
"description": "Partner ID to get top content for",
"type": "string"
},
"period": {
"default": "FOUR_WEEKS",
"description": "Time period for content rankings",
"enum": [
"FOUR_WEEKS",
"SIXTEEN_WEEKS",
"ONE_YEAR"
],
"type": "string"
}
},
"required": [
"partnerId"
],
"type": "object"
}