Lister les CATEGORIES
myHeaders.append("Authorization", "Bearer <token>");
const categories = [];
fetch("https://api.sinao.app/v1/apps/:appId/accountcategories?&expand[0]=accounts&offset=0&limit=25", {
method: 'GET',
headers: myHeaders
})
.then(response => response.json())
.then(result => categories.push(...result.data));Updated 20 days ago
