scp_get_intents
Retrieve shopping intents from authorized merchant domains to understand customer purchase goals and preferences for personalized e-commerce assistance.
Instructions
Get shopping intents from a merchant. Domain must be authorized first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | Merchant domain | |
limit | No | Maximum number of intents to return | |
status | No | Filter by status (e.g., ['active', 'in_progress']) |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Merchant domain",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of intents to return",
"type": "number"
},
"status": {
"description": "Filter by status (e.g., ['active', 'in_progress'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"domain"
],
"type": "object"
}