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