getting a 401 unauthorized when hitting /api/v2/analytics/queues/realtime from my go service. token is valid for other endpoints.
req, _ := http.NewRequest("GET", base+"/analytics/queues/realtime", nil)
req.Header.Set("Authorization", "Bearer "+token)
res, _ := client.Do(req)
the token works for /api/v2/users/me. is this endpoint restricted? need real-time waiting counts for a dashboard. any ideas?