Class Admin
An administrator
[DataContract]
public class Admin : NamedIdentifiedItem
- Inheritance
-
Admin
- Inherited Members
Properties
AccountStatus
Account status
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "accountStatus")]
public string AccountStatus { get; set; }
Property Value
AuthenticationMethod
The method of authentication the user will use to sign in to the Meraki dashboard. Can be one of 'Email' or 'Cisco SecureX Sign-On'. The default is Email authentication
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "authenticationMethod")]
public string? AuthenticationMethod { get; set; }
Property Value
Camera
Undocumented member 'camera' returned in live data
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "camera")]
public List<AdminCameraAccess>? Camera { get; set; }
Property Value
The administrator's Email
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "email")]
public string Email { get; set; }
Property Value
HasApiKey
Whether the administrator has an API key
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "hasApiKey")]
public bool HasApiKey { get; set; }
Property Value
LastActive
Last active
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "lastActive")]
public DateTime? LastActive { get; set; }
Property Value
Networks
The list of networks that the dashboard administrator has privileges on
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "networks")]
public List<AdminNetworkAccess> Networks { get; set; }
Property Value
OrganizationAccess
The administrator's organization Access
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "orgAccess")]
public OrgAccess OrganizationAccess { get; set; }
Property Value
Tags
The list of tags that the dashboard administrator has privileges on
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "tags")]
public List<AdminTag> Tags { get; set; }
Property Value
TwoFactorAuthEnabled
Whether two factor authorization is enabled
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "twoFactorAuthEnabled")]
public bool TwoFactorAuthEnabled { get; set; }