
API arayüzüne erişmek için token'ınızı doğrulayın
1// Aaro ERP API kullanımı – örnek istek2fetch("https://erp.aaro.com.tr/api/[ENDPOINT]", {3 method: "GET",4 headers: {5 "Authorization": "Bearer YOUR_TOKEN_HERE",6 "Content-Type": "application/json"7 },8})9 .then((r) => r.json())10 .then((d) => console.log("API Response:", d))11 .catch(console.error);1213// NOT: Token doğrulama endpoint'i henüz mevcut değil14// Şimdilik token direkt kaydediliyor