get_partner_inquiry_time_series
Track inquiry trends and response times for a partner over customizable time periods using Artsy's Analytics MCP Server. Specify partner ID, period (4 weeks to 1 year), and cumulative data options.
Instructions
Get detailed inquiry analytics with time series data and response times
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cumulative | No | Whether to show cumulative inquiries over time | |
partnerId | Yes | Partner ID to get inquiry time series for | |
period | No | Time period for inquiry data | FOUR_WEEKS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cumulative": {
"default": false,
"description": "Whether to show cumulative inquiries over time",
"type": "boolean"
},
"partnerId": {
"description": "Partner ID to get inquiry time series for",
"type": "string"
},
"period": {
"default": "FOUR_WEEKS",
"description": "Time period for inquiry data",
"enum": [
"FOUR_WEEKS",
"SIXTEEN_WEEKS",
"ONE_YEAR"
],
"type": "string"
}
},
"required": [
"partnerId"
],
"type": "object"
}