🏷️ Max Price API
Purpose: The Max Price API provides instant price quotes for devices based on your own product catalogue. It's crucial for delivering the initial price the customer sees, commonly referred to as the "up-to" price, as part of online pricing process.
Key Features:
- Instant Quotes: Delivers immediate pricing information to customers, setting clear expectations from the beginning of the trade-in process.
- Catalogue-Based Pricing: Utilizes the partner’s comprehensive product catalogue to derive prices, ensuring consistency with internal pricing strategies.
Usage Requirements:
- 🟢 Mandatory: This API must be implemented if you are utilizing Online Pricing, as it directly influences the initial customer interaction by providing potential maximum trade-in values.
- 🟡 Optional: If Online Pricing is not part of your service offering, the implementation of this API is optional. In such cases, alternate pricing mechanisms may be employed according to your specific business model and integration setup.
Implementation Details:
- Method:
GET
- Request Parameters:
productId
: A unique identifier for the product.
- Expected Response:
value
: The maximum up-front price that can be offered for the device.currency
: The currency in which the price is provided (e.g., USD, EUR).
Sample Response:
{
"price": {
"value": 250,
"currency": "USD"
}
}