app_links
Creates, updates, deletes, gets or lists an app_links
resource.
Overview
Name | app_links |
Type | Resource |
Id | okta.users.app_links |
Fields
The following fields are returned by SELECT
queries:
- list_app_links
Name | Datatype | Description |
---|---|---|
id | string | |
appAssignmentId | string | |
appInstanceId | string | |
appName | string | |
credentialsSetup | boolean | |
hidden | boolean | |
label | string | |
linkUrl | string | |
logoUrl | string | |
sortOrder | integer |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_app_links | select | subdomain | 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. |
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.
Name | Datatype | Description |
---|---|---|
subdomain | string | The 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
- list_app_links
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;