scp_get_offers
Retrieve active personalized offers from authorized merchants using the Shopper Context Protocol to access customer e-commerce data with OAuth 2.0 authentication.
Instructions
Get active personalized offers from a merchant. Domain must be authorized first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active_only | No | Only return active offers | |
domain | Yes | Merchant domain |
Input Schema (JSON Schema)
{
"properties": {
"active_only": {
"default": true,
"description": "Only return active offers",
"type": "boolean"
},
"domain": {
"description": "Merchant domain",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}