- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
getOrganizationCameraDetectionsHistoryByBoundaryByInterval
Hello Guys, I am trying to format my API "getOrganizationCameraDetectionsHistoryByBoundaryByInterval" but I am with difficulty. There is some sample to how should I create the fields "boundaryIds" and "ranges"?
I've consulted the documentation: https://developer.cisco.com/meraki/api-v1/get-organization-camera-detections-history-by-boundary-by-...
but I should be wrong when create my fields.
Thank you for your help.
Sample of my actual url: {{baseUrl}}/organizations/:organizationId/camera/detections/history/byBoundary/byInterval?boundaryIds=["3667618946539847796"]&ranges=[{"interval":60,"startTime":"2024-07-19T12:00:00Z","endTime":"2024-07-19T13:00:00Z"}]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
From memory (its been quite a while since I played with this), you draw the zones in the Dashboard.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
My point is how I should correctly fill in the ‘boundaryIds and ranges’ fields. I am not managing to make this call correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
did you managed to make it working? The Python SDK does not work either as the ranges parameters is filtered out from code.
boundaryIds and ranges should be set in query string like: ...&boundaryIds[]=123454&ranges[]=....
but now the endpoint tells ranges items should be object, I tried like: ranges[]={"interval": 86400} but it doesn't work.
Quite odd API!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
No, is not working for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The "array of object" data type requires that "[]" and the object property name be appended to the end of query parameter name.
The format for your request URL should look like the following.
/organizations/:organizationId/camera/detections/history/byBoundary/byInterval?boundaryIds[]=3667618946539847796&ranges[]interval=60&ranges[]startTime=2024-07-19T12:00:00Z&ranges[]endTime=2024-07-19T13:00:00Z
