Skip to main content

bundle_entitlement_values

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

Overview

Namebundle_entitlement_values
TypeResource
Idokta.iam.bundle_entitlement_values

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
_links
entitlementValuesarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bundle_entitlement_valuesselectsubdomainafter, limitLists all Entitlement Values specific to a Bundle Entitlement

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)
afterstringThe cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the Link response header. See Pagination.
limitintegerA limit on the number of objects to return

SELECT examples

Lists all Entitlement Values specific to a Bundle Entitlement

SELECT
_links,
entitlementValues
FROM okta.iam.bundle_entitlement_values
WHERE subdomain = '{{ subdomain }}' -- required
AND after = '{{ after }}'
AND limit = '{{ limit }}'
;