Table of Contents

Interface ICameraWirelessProfiles

Namespace
Meraki.Api.Interfaces.Products.Camera
Assembly
Meraki.Api.dll
public interface ICameraWirelessProfiles

Methods

CreateNetworkCameraWirelessProfileAsync(string, NetworkCameraWirelessProfileCreateUpdateRequest, CancellationToken)

Creates a new camera wireless profile for this network.

[Post("/networks/{networkId}/camera/wirelessProfiles")]
Task<NetworkCameraWirelessProfile> CreateNetworkCameraWirelessProfileAsync(string networkId, NetworkCameraWirelessProfileCreateUpdateRequest createNetworkCameraWirelessProfile, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

createNetworkCameraWirelessProfile NetworkCameraWirelessProfileCreateUpdateRequest

Body for creating camera wireless profile

cancellationToken CancellationToken

Returns

Task<NetworkCameraWirelessProfile>

Exceptions

ApiException

Thrown when fails to make API call

DeleteNetworkCameraWirelessProfileAsync(string, string, CancellationToken)

Delete an existing camera wireless profile for this network.

[Delete("/networks/{networkId}/camera/wirelessProfiles/{wirelessProfileId}")]
Task DeleteNetworkCameraWirelessProfileAsync(string networkId, string wirelessProfileId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

wirelessProfileId string

The wireless profile id

cancellationToken CancellationToken

Returns

Task

Exceptions

ApiException

Thrown when fails to make API call

GetDeviceCameraWirelessProfilesAsync(string, CancellationToken)

Returns wireless profile assigned to the given camera

[Get("/devices/{serial}/camera/wirelessProfiles")]
Task<CameraWirelessProfiles> GetDeviceCameraWirelessProfilesAsync(string serial, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

cancellationToken CancellationToken

Returns

Task<CameraWirelessProfiles>

Exceptions

ApiException

Thrown when fails to make API call

GetNetworkCameraWirelessProfileAsync(string, string, CancellationToken)

Retrieve a single camera wireless profile.

[Get("/networks/{networkId}/camera/wirelessProfiles/{wirelessProfileId}")]
Task<NetworkCameraWirelessProfile> GetNetworkCameraWirelessProfileAsync(string networkId, string wirelessProfileId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

wirelessProfileId string

The wireless profile id

cancellationToken CancellationToken

Returns

Task<NetworkCameraWirelessProfile>

Exceptions

ApiException

Thrown when fails to make API call

GetNetworkCameraWirelessProfilesAsync(string, CancellationToken)

List the camera wireless profiles for this network.

[Get("/networks/{networkId}/camera/wirelessProfiles")]
Task<List<NetworkCameraWirelessProfile>> GetNetworkCameraWirelessProfilesAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<List<NetworkCameraWirelessProfile>>

Exceptions

ApiException

Thrown when fails to make API call

UpdateDeviceCameraWirelessProfilesAsync(string, CameraWirelessProfiles, CancellationToken)

Assign wireless profiles to the given camera.

[Put("/devices/{serial}/camera/wirelessProfiles")]
Task<CameraWirelessProfiles> UpdateDeviceCameraWirelessProfilesAsync(string serial, CameraWirelessProfiles updateDeviceCameraWirelessProfiles, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

updateDeviceCameraWirelessProfiles CameraWirelessProfiles

Body for updating camera wireless profiles

cancellationToken CancellationToken

Returns

Task<CameraWirelessProfiles>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkCameraWirelessProfileAsync(string, string, NetworkCameraWirelessProfileCreateUpdateRequest, CancellationToken)

Update an existing camera wireless profile in this network.

[Put("/networks/{networkId}/camera/wirelessProfiles/{wirelessProfileId}")]
Task<NetworkCameraWirelessProfile> UpdateNetworkCameraWirelessProfileAsync(string networkId, string wirelessProfileId, NetworkCameraWirelessProfileCreateUpdateRequest updateNetworkCameraWirelessProfile, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

wirelessProfileId string

The wireless profile id

updateNetworkCameraWirelessProfile NetworkCameraWirelessProfileCreateUpdateRequest

Body for updating camera wireless profile

cancellationToken CancellationToken

Returns

Task<NetworkCameraWirelessProfile>

Exceptions

ApiException

Thrown when fails to make API call