Skip to main content

endpoints

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

Overview

Nameendpoints
TypeResource
Identra_id.service_principals.endpoints

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
capabilitystring
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])$)
providerIdstring
providerNamestring
providerResourceIdstring
uristring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectservice_principal_id, endpoint_id
listselectservice_principal_id
insertinsertservice_principal_id
updateupdateservice_principal_id, endpoint_id
deletedeleteservice_principal_id, endpoint_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
endpoint_idstringThe unique identifier of endpoint
service_principal_idstringThe unique identifier of servicePrincipal
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
capability,
deletedDateTime,
providerId,
providerName,
providerResourceId,
uri
FROM entra_id.service_principals.endpoints
WHERE service_principal_id = '{{ service_principal_id }}' -- required
AND endpoint_id = '{{ endpoint_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.service_principals.endpoints (
id,
deletedDateTime,
capability,
providerId,
providerName,
providerResourceId,
uri,
service_principal_id
)
SELECT
'{{ id }}',
'{{ deletedDateTime }}',
'{{ capability }}',
'{{ providerId }}',
'{{ providerName }}',
'{{ providerResourceId }}',
'{{ uri }}',
'{{ service_principal_id }}'
RETURNING
id,
capability,
deletedDateTime,
providerId,
providerName,
providerResourceId,
uri
;

UPDATE examples

No description available.

UPDATE entra_id.service_principals.endpoints
SET
id = '{{ id }}',
deletedDateTime = '{{ deletedDateTime }}',
capability = '{{ capability }}',
providerId = '{{ providerId }}',
providerName = '{{ providerName }}',
providerResourceId = '{{ providerResourceId }}',
uri = '{{ uri }}'
WHERE
service_principal_id = '{{ service_principal_id }}' --required
AND endpoint_id = '{{ endpoint_id }}' --required
RETURNING
id,
capability,
deletedDateTime,
providerId,
providerName,
providerResourceId,
uri;

DELETE examples

No description available.

DELETE FROM entra_id.service_principals.endpoints
WHERE service_principal_id = '{{ service_principal_id }}' --required
AND endpoint_id = '{{ endpoint_id }}' --required
AND If-Match = '{{ If-Match }}'
;