get_partner_sales_stats
Access sales analytics for Artsy partners, including order count, revenue, and response times, by specifying a partner ID and time period for detailed insights.
Instructions
Get partner sales analytics including order count, revenue, and response times
Input Schema
Name | Required | Description | Default |
---|---|---|---|
partnerId | Yes | Partner ID to get sales analytics for | |
period | No | Time period for sales data | FOUR_WEEKS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"partnerId": {
"description": "Partner ID to get sales analytics for",
"type": "string"
},
"period": {
"default": "FOUR_WEEKS",
"description": "Time period for sales data",
"enum": [
"FOUR_WEEKS",
"SIXTEEN_WEEKS",
"ONE_YEAR"
],
"type": "string"
}
},
"required": [
"partnerId"
],
"type": "object"
}