Table of Contents

Interface ISmVppAccounts

Namespace
Meraki.Api.Interfaces.Products.Sm
Assembly
Meraki.Api.dll

Represents a collection of functions to interact with the API endpoints

public interface ISmVppAccounts

Methods

GetOrganizationSmVppAccountAsync(string, string, CancellationToken)

List the VPP accounts in the organization

[Get("/organizations/{organizationId}/sm/vppAccounts/{vppAccountId}")]
Task<SmVppAccount> GetOrganizationSmVppAccountAsync(string organizationId, string vppAccountId, CancellationToken cancellationToken = default)

Parameters

organizationId string

The organization id

vppAccountId string

The VPP account id

cancellationToken CancellationToken

Returns

Task<SmVppAccount>

Exceptions

ApiException

Thrown when fails to make API call

GetOrganizationSmVppAccountsAsync(string, CancellationToken)

List the VPP accounts in the organization

[Get("/organizations/{organizationId}/sm/vppAccounts")]
Task<List<SmVppAccount>> GetOrganizationSmVppAccountsAsync(string organizationId, CancellationToken cancellationToken = default)

Parameters

organizationId string

The organization id

cancellationToken CancellationToken

Returns

Task<List<SmVppAccount>>

Exceptions

ApiException

Thrown when fails to make API call