get_partner_artworks_published_stats
Analyze partner artwork publishing statistics by providing a partner ID and time period, offering insights into trends and performance for galleries and artists.
Instructions
Get partner artwork publishing statistics and trends
Input Schema
Name | Required | Description | Default |
---|---|---|---|
partnerId | Yes | Partner ID to get publishing stats for | |
period | No | Time period for publishing data | FOUR_WEEKS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"partnerId": {
"description": "Partner ID to get publishing stats for",
"type": "string"
},
"period": {
"default": "FOUR_WEEKS",
"description": "Time period for publishing data",
"enum": [
"FOUR_WEEKS",
"SIXTEEN_WEEKS",
"ONE_YEAR"
],
"type": "string"
}
},
"required": [
"partnerId"
],
"type": "object"
}