Interface IOrganizationsSplash
- Namespace
- Meraki.Api.Interfaces.General.Organizations
- Assembly
- Meraki.Api.dll
public interface IOrganizationsSplash
Methods
CreateOrganizationSplashThemeAssetAsync(string, string, OrganizationSplashThemeAssetCreateRequest, CancellationToken)
Create a Splash Theme Asset
[Post("/organizations/{organizationId}/splash/themes/{themeIdentifier}/assets")]
Task<OrganizationSplashAsset> CreateOrganizationSplashThemeAssetAsync(string organizationId, string themeIdentifier, OrganizationSplashThemeAssetCreateRequest splashThemeCreateRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
themeIdentifier
stringThe splash theme id
splashThemeCreateRequest
OrganizationSplashThemeAssetCreateRequestThe splash theme create request body
cancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
CreateOrganizationSplashThemeAsync(string, OrganizationSplashThemeCreateRequest, CancellationToken)
Create a Splash Theme
[Post("/organizations/{organizationId}/splash/themes")]
Task<OrganizationSplashTheme> CreateOrganizationSplashThemeAsync(string organizationId, OrganizationSplashThemeCreateRequest splashThemeCreateRequest, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
splashThemeCreateRequest
OrganizationSplashThemeCreateRequestThe splash theme create request body
cancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteOrganizationSplashAssetAsync(string, string, CancellationToken)
Delete a Splash Theme Asset
[Delete("/organizations/{organizationId}/splash/assets/{id}")]
Task DeleteOrganizationSplashAssetAsync(string organizationId, string id, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
id
stringID
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteOrganizationSplashThemeAsync(string, string, CancellationToken)
Delete a Splash Theme
[Delete("/organizations/{organizationId}/splash/themes/{id}")]
Task DeleteOrganizationSplashThemeAsync(string organizationId, string id, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
id
stringID
cancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationSplashAssetAsync(string, string, CancellationToken)
Get a Splash Theme Asset
[Get("/organizations/{organizationId}/splash/assets/{id}")]
Task<OrganizationSplashAsset> GetOrganizationSplashAssetAsync(string organizationId, string id, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
id
stringID
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetOrganizationSplashThemesAsync(string, CancellationToken)
List Splash Themes
[Get("/organizations/{organizationId}/splash/themes")]
Task<List<OrganizationSplashTheme>> GetOrganizationSplashThemesAsync(string organizationId, CancellationToken cancellationToken = default)
Parameters
organizationId
stringThe organization id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call