Interface IOrganizationsLicenses
- Namespace
- Meraki.Api.Interfaces.General.Organizations
- Assembly
- Meraki.Api.dll
public interface IOrganizationsLicenses
- Extension Methods
Methods
AssignOrganizationLicensesSeatsAsync(string, LicenseSeatsAssignmentRequest, CancellationToken)
Assign SM seats to a network
[Post("/organizations/{organizationId}/licenses/assignSeats")]
Task<AssignSeatsResponse> AssignOrganizationLicensesSeatsAsync(string organizationId, LicenseSeatsAssignmentRequest licenseSeatsAssignmentRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseSeatsAssignmentRequest
LicenseSeatsAssignmentRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationLicenseAsync(string, string, CancellationToken)
Display a license
[Get("/organizations/{organizationId}/licenses/{licenseId}")]
Task<OrganizationLicense> GetOrganizationLicenseAsync(string organizationId, string licenseId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseId
stringThe license id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationLicensesAsync(string, int?, string?, string?, string?, string?, string?, CancellationToken)
List the licenses for an organization
[Get("/organizations/{organizationId}/licenses")]
Task<List<OrganizationLicense>> GetOrganizationLicensesAsync(string organizationId, int? perPage = 1000, string? startingAfter = null, string? endingBefore = null, string? deviceSerial = null, string? networkId = null, string? state = null, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
perPage
int?The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000. (optional)
startingAfter
stringA token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it. (optional)
endingBefore
stringA token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it. (optional)
deviceSerial
stringFilter the licenses to those assigned to a particular device (optional)
networkId
stringFilter the licenses to those assigned in a particular network (optional)
state
stringFilter the licenses to those in a particular state. Can be one of 'active', 'expired', 'expiring', 'unused', 'unusedActive' or 'recentlyQueued' (optional)
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationLicensesOverviewAsync(string, CancellationToken)
Return an overview of the license state for an organization
[Get("/organizations/{organizationId}/licenses/overview")]
Task<OrganizationLicenseState> GetOrganizationLicensesOverviewAsync(string organizationId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
MoveOrganizationLicensesAsync(string, LicenseMoveRequest, CancellationToken)
Move licenses to another organization
[Post("/organizations/{organizationId}/licenses/move")]
Task<LicenseMoveRequest> MoveOrganizationLicensesAsync(string organizationId, LicenseMoveRequest licenseMoveRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseMoveRequest
LicenseMoveRequestBody for moving a license
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
MoveOrganizationLicensesSeatsAsync(string, LicenseSeatsMoveRequest, CancellationToken)
Move SM seats to another organization
[Post("/organizations/{organizationId}/licenses/moveSeats")]
Task<LicenseSeatsMoveRequest> MoveOrganizationLicensesSeatsAsync(string organizationId, LicenseSeatsMoveRequest licenseSeatsMoveRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseSeatsMoveRequest
LicenseSeatsMoveRequestBody for moving SM seats
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
RenewOrganizationLicensesSeatsAsync(string, LicenseSeatsRenewalRequest, CancellationToken)
Renew SM seats of a license
[Post("/organizations/{organizationId}/licenses/renewSeats")]
Task<AssignSeatsResponse> RenewOrganizationLicensesSeatsAsync(string organizationId, LicenseSeatsRenewalRequest licenseSeatsRenewalRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseSeatsRenewalRequest
LicenseSeatsRenewalRequestBody for renewing SM seats
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateOrganizationLicenseAsync(string, string, LicenseUpdateRequest, CancellationToken)
Update a license
[Put("/organizations/{organizationId}/licenses/{licenseId}")]
Task<OrganizationLicense> UpdateOrganizationLicenseAsync(string organizationId, string licenseId, LicenseUpdateRequest updateOrganizationLicense, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
licenseId
stringThe license id
updateOrganizationLicense
LicenseUpdateRequestBody for updating a license
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call