Applications that the user is subscribed to

Hi 

How can I get a list with all applications subscribed by selected user?

I found Apis.Get<IApplicationSubscriptions>() but that have only reverse operations.

Parents
  • You could try the .List() method, however you'd probably need to execute it within a RunAs context as this method appears to execute against the Accessing user.

    set($pagedListResponse = $core_v2_applicationSubscription.List("%{ ApplicationId = $applicationIdArg, ApplicationTypeId = $applicationTypeIdArg, ContainerId = $containerIdArg, IncludeSubContainers = $includeSubContainersArg, PageIndex = $pageIndexArg, PageSize = $pageSizeArg, TypeId = $typeIdArg }"))

Reply
  • You could try the .List() method, however you'd probably need to execute it within a RunAs context as this method appears to execute against the Accessing user.

    set($pagedListResponse = $core_v2_applicationSubscription.List("%{ ApplicationId = $applicationIdArg, ApplicationTypeId = $applicationTypeIdArg, ContainerId = $containerIdArg, IncludeSubContainers = $includeSubContainersArg, PageIndex = $pageIndexArg, PageSize = $pageSizeArg, TypeId = $typeIdArg }"))

Children
No Data