You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is the working code, which is available on the Aruba webclient, but in the repo, the following is provided:
if self.orch_version >= 9.3:
path += f"?nePk={ne_pk}"
else:
path += f"/{ne_pk}?"
path += f"startTime={start_time}&endTime={end_time}"
if top is not None:
path += f"&top={top}"
return self._get(path)
In this case, we get the following response:
{startTime} parameter required for this resource.
The solution is just an additional & in the code before the startTime
The text was updated successfully, but these errors were encountered:
topTalkers?nePk=xxx.NE&startTime=yyy
is the working code, which is available on the Aruba webclient, but in the repo, the following is provided:
In this case, we get the following response:
{startTime} parameter required for this resource.
The solution is just an additional & in the code before the startTime
The text was updated successfully, but these errors were encountered: