Sale percentage
Lista wszystkich publicznie dostępnych metod interakcji z API.
GET
Get cart sale percentage -/cart/sale-percentage
Metoda zapytania
GEThttps://api.stableproxy.com/v2/cart/sale-percentage
Przykłady kodu
JavaScript
async function getCartSalePercentage() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/cart/sale-percentage', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}