Skip to main content

app_links

Creates, updates, deletes, gets or lists an app_links resource.

Overview

Nameapp_links
TypeResource
Idokta.users.app_links

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
appAssignmentIdstring
appInstanceIdstring
appNamestring
credentialsSetupboolean
hiddenboolean
labelstring
linkUrlstring
logoUrlstring
sortOrderinteger

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_app_linksselectsubdomainLists all app links for all direct or indirect (through group membership) assigned apps.

> Note: To list all apps in an org, use the List all applications endpoint in the Applications API.

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
subdomainstringThe domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org)

SELECT examples

Lists all app links for all direct or indirect (through group membership) assigned apps.

> Note: To list all apps in an org, use the List all applications endpoint in the Applications API.

SELECT
id,
appAssignmentId,
appInstanceId,
appName,
credentialsSetup,
hidden,
label,
linkUrl,
logoUrl,
sortOrder
FROM okta.users.app_links
WHERE subdomain = '{{ subdomain }}' -- required;