Available geo services
Lista wszystkich publicznie dostępnych metod interakcji z API.
GET
Get cart available geo services -/cart/available-geo-services
Metoda zapytania
GEThttp://apilocal.stableproxy.com/v2/cart/available-geo-services
Przykłady kodu
JavaScript
1async function getCartAvailableGeoServices() {
2 const baseUrl = 'http://apilocal.stableproxy.com/v2';
3 const req = await fetch(baseUrl + '/cart/available-geo-services', {
4 method: 'GET',
5 headers: {
6 'Content-Type': 'application/json'
7 }
8 }
9 );
10
11 const res = await req.json();
12}