Gets all cameras from a folder. Returns (Task<IEnumerable>)
Find all Cameras in the designated Folder.
| Name | Description |
|---|---|
| folder | The folder to get cameras from |
| page | The page number to retrieve |
| pageSize | The Page Size (default is 1000). Maximum allowed value is 20000. |
Example in C#
// Returns: IEnumerable<CameraInfo>
var cameraInfo = await client.GetCamerasAsync(FolderInfo folder, Int32 page, Int32 pageSize);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/cameras \
-H 'Authorization: Bearer TOKEN_GOES_HERE'