Gets all access levels assigned to a person. Returns (Task<IEnumerable>)
Finds all access levels for a designated person.
| Name | Description |
|---|---|
| person | The person whose access levels to retrieve |
Example in C#
// Returns: IEnumerable<AccessLevelInfo>
var accessLevelInfo = await client.GetAccessLevelsForPersonAsync(PersonInfo person);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/accesslevels \
-H 'Authorization: Bearer TOKEN_GOES_HERE'