Skip to main content

entitlement_management_resource_requests_catalog_custom_workflow_extensions

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

Overview

Nameentitlement_management_resource_requests_catalog_custom_workflow_extensions
TypeResource
Identra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
authenticationConfigurationConfiguration for securing the API call to the logic app. For example, using OAuth client credentials flow.
clientConfigurationHTTP connection settings that define how long Microsoft Entra ID can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed.
descriptionstringDescription for the customCalloutExtension object.
displayNamestringDisplay name for the customCalloutExtension object.
endpointConfigurationThe type and details for configuring the endpoint to call the logic app's workflow.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccess_package_resource_request_id, custom_callout_extension_id
listselectaccess_package_resource_request_id
insertinsertaccess_package_resource_request_id
updateupdateaccess_package_resource_request_id, custom_callout_extension_id
deletedeleteaccess_package_resource_request_id, custom_callout_extension_idIf-Match

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
access_package_resource_request_idstringThe unique identifier of accessPackageResourceRequest
custom_callout_extension_idstringThe unique identifier of customCalloutExtension
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration
FROM entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
WHERE access_package_resource_request_id = '{{ access_package_resource_request_id }}' -- required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions (
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration,
access_package_resource_request_id
)
SELECT
'{{ id }}',
'{{ authenticationConfiguration }}',
'{{ clientConfiguration }}',
'{{ description }}',
'{{ displayName }}',
'{{ endpointConfiguration }}',
'{{ access_package_resource_request_id }}'
RETURNING
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
SET
id = '{{ id }}',
authenticationConfiguration = '{{ authenticationConfiguration }}',
clientConfiguration = '{{ clientConfiguration }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
endpointConfiguration = '{{ endpointConfiguration }}'
WHERE
access_package_resource_request_id = '{{ access_package_resource_request_id }}' --required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' --required
RETURNING
id,
authenticationConfiguration,
clientConfiguration,
description,
displayName,
endpointConfiguration;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.entitlement_management_resource_requests_catalog_custom_workflow_extensions
WHERE access_package_resource_request_id = '{{ access_package_resource_request_id }}' --required
AND custom_callout_extension_id = '{{ custom_callout_extension_id }}' --required
AND If-Match = '{{ If-Match }}'
;