Storefront Powershell SDK 2402

Get-STFStoreServiceExternalEndpoint

Get an external endpoint associated with the Store

Syntax

Get-STFStoreServiceExternalEndpoint [-StoreService] <StoreService> [[-Id] <String>] [<CommonParameters>]
<!--NeedCopy-->

Detailed Description

Get an external endpoint associated with the Store

Parameters

Name Description Required? Pipeline Input Default Value
StoreService Store service true true (ByValue)  
Id The name of the endpoint to retrieve. false false  

Input Type

Citrix.StoreFront.Model.Store.StoreService

Parameter StoreService: A .NET class representing the configuration of a StoreFront Store service

System.String

Parameter Id: The .NET System.String reference type

Return Values

None

Examples

EXAMPLE 1 Get an external endpoint

$store = Get-STFStoreService
            Get-STFStoreServiceExternalEndpoint -StoreService $store -Id WebUI
<!--NeedCopy-->

REMARKS

Get an external endpoint

OUTPUT

Id    Url                                                          Capabilities
--    ---                                                          ------------
WebUI https://example.storefront/Citrix/StoreWeb/receiver.html {WebUI}
<!--NeedCopy-->
Get-STFStoreServiceExternalEndpoint