Skip to main content

service_sso_tokens

Creates, updates, deletes, gets or lists a service_sso_tokens resource.

Overview

Nameservice_sso_tokens
TypeResource
Idazure.api_management.service_sso_tokens

Fields

The following fields are returned by SELECT queries:

OK if successful with the SSO Redirect URI.

NameDatatypeDescription
redirectUristringRedirect URL to the Publisher Portal containing the SSO token.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, serviceName, subscriptionIdGets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes.

SELECT
redirectUri
FROM azure.api_management.service_sso_tokens
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;