Skip to content

Stop Product Subscription

licensemanagerusersubscriptions_stop_product_subscription R Documentation

Stops a product subscription for a user with the specified identity provider

Description

Stops a product subscription for a user with the specified identity provider.

Usage

licensemanagerusersubscriptions_stop_product_subscription(Domain,
  IdentityProvider, Product, Username)

Arguments

Domain

The domain name of the user.

IdentityProvider

[required] An object that specifies details for the identity provider.

Product

[required] The name of the user-based subscription product.

Username

[required] The user name from the identity provider for the user.

Value

A list with the following syntax:

list(
  ProductUserSummary = list(
    Domain = "string",
    IdentityProvider = list(
      ActiveDirectoryIdentityProvider = list(
        DirectoryId = "string"
      )
    ),
    Product = "string",
    Status = "string",
    StatusMessage = "string",
    SubscriptionEndDate = "string",
    SubscriptionStartDate = "string",
    Username = "string"
  )
)

Request syntax

svc$stop_product_subscription(
  Domain = "string",
  IdentityProvider = list(
    ActiveDirectoryIdentityProvider = list(
      DirectoryId = "string"
    )
  ),
  Product = "string",
  Username = "string"
)