Skip to main content

entitlement_management_connected_organizations_external_sponsors

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

Overview

Nameentitlement_management_connected_organizations_external_sponsors
TypeResource
Identra_id.identity_governance.entitlement_management_connected_organizations_external_sponsors

Fields

The following fields are returned by SELECT queries:

Retrieved collection

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
deletedDateTimestring (date-time)Date and time when this object was deleted. Always null when the object hasn't been deleted. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectconnected_organization_id
add_refinsertconnected_organization_idAdd a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization.
remove_refdeleteconnected_organization_id, directory_object_idIf-MatchRemove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization.
remove_ref_2deleteconnected_organization_idIf-MatchRemove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization.

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
connected_organization_idstringThe unique identifier of connectedOrganization
directory_object_idstringThe unique identifier of directoryObject
If-MatchstringETag

SELECT examples

Retrieved collection

SELECT
id,
deletedDateTime
FROM entra_id.identity_governance.entitlement_management_connected_organizations_external_sponsors
WHERE connected_organization_id = '{{ connected_organization_id }}' -- required
;

INSERT examples

Add a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization.

INSERT INTO entra_id.identity_governance.entitlement_management_connected_organizations_external_sponsors (
directoryObjectId,
connected_organization_id
)
SELECT
'{{ directoryObjectId }}',
'{{ connected_organization_id }}'
;

DELETE examples

Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization.

DELETE FROM entra_id.identity_governance.entitlement_management_connected_organizations_external_sponsors
WHERE connected_organization_id = '{{ connected_organization_id }}' --required
AND directory_object_id = '{{ directory_object_id }}' --required
AND If-Match = '{{ If-Match }}'
;