scp_update_intent
Modify existing shopping intent status, context, or milestones for authorized merchant domains to track and update customer purchase journeys.
Instructions
Update an existing shopping intent. Domain must be authorized with intent:write scope.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
add_milestone | No | Add a milestone note | |
context | No | Updated context | |
domain | Yes | Merchant domain | |
intent_id | Yes | Intent ID to update | |
status | No | New status |
Input Schema (JSON Schema)
{
"properties": {
"add_milestone": {
"description": "Add a milestone note",
"type": "string"
},
"context": {
"description": "Updated context",
"type": "object"
},
"domain": {
"description": "Merchant domain",
"type": "string"
},
"intent_id": {
"description": "Intent ID to update",
"type": "string"
},
"status": {
"description": "New status",
"type": "string"
}
},
"required": [
"domain",
"intent_id"
],
"type": "object"
}