Saved searches

Use saved searches to filter your results more quickly

Cancel Create saved search Sign up Reseting focus

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

TrustedApplicationEndpoint.md

Latest commit

History

80 lines (51 loc) · 4.55 KB

TrustedApplicationEndpoint.md

File metadata and controls

80 lines (51 loc) · 4.55 KB Set up a Trusted Application Endpoint

Learn how to set up a Trusted Application Endpoint using PowerShell cmdlets on Skype for Business Online. Detailed guide for tenant admin provisioning and endpoint management.

Set up a Trusted Application Endpoint

Tenant Admin Provisioning includes setting up the trusted endpoints and tenant admin consent. Please refer Tenant Admin Consent for a tenant to consent to the application.

You can easily register Trusted Application Endpoints by using the PowerShell cmdlets. General information about PowerShell cmdlets usage can be found in Using Windows PowerShell to manage Skype for Business Online. You will need to complete the following steps to run the admin PowerShell:

  1. Download and install the Skype for Business Online Connector module)
  2. Open Windows PowerShell as Administrator and run the following:
Import-PSSession (New-CsOnlineSession -Credential (Get-Credential))

Managing Trusted Application Endpoint With PowerShell

For assigning a PSTN phone number to a Trusted Endpoint, you will need to follow the steps below acquire a service number that will be assigned to Trusted Application Endpoint. Assigning a phone number is optional. If assigning a phone number to your endpoint, acquiring a service number should be completed before running the Powershell cmdlets. See details below.

  1. Follow the documentation to connect to the Skype for Business PowerShell cmdlets The following cmdlets can be used to setup trusted application endpoints:
Parameters Required Type Description
Name Required String Friendly name for Application endpoint
ApplicationId Required Guid Unique application Id that this endpoint will use.
Uri Required String The SipUri for the Endpoint. SIP Uri must be lowercase.
PhoneNumber Optional String Phone number for the endpoint.
Parameters Required Type Description
Uri Required String The SipUri for the Endpoint.
Parameters Required Type Description
Uri Required String The SipUri for the Endpoint. SIP Uri must be lowercase.
PhoneNumber Optional String Phone number for the endpoint.
Parameters Required Type Description
Uri Required String The SipUri for the Endpoint. SIP Uri must be lowercase.

For PSTN, Assign the service numbers to the trusted application endpoint using New-CsOnlineApplicationEndpoint PhoneNumber parameter. PhoneNumber is not required.

Detailed Explanation of Parameters

Example

The following PowerShell cmdlet creates a new application endpoint.

New-CsOnlineApplicationEndpoint -Uri "sip:sample@domain.com" -ApplicationId "44ff763b-5d1f-40ab-95bf-f31kc8757998" -Name "SampleApp" -PhoneNumber "19841110909"