Skip to content

Latest commit

 

History

History
175 lines (140 loc) · 7.12 KB

identitygovernance-lifecycleworkflowscontainer-list-customtaskextensions.md

File metadata and controls

175 lines (140 loc) · 7.12 KB
title description author ms.localizationpriority ms.subservice doc_type
List customTaskExtensions
Get a list of the customTaskExtension objects and their properties.
AlexFilipin
medium
entra-id-governance
apiPageType

List customTaskExtensions

Namespace: microsoft.graph.identityGovernance

[!INCLUDE beta-disclaimer]

Get a list of the customTaskExtension objects and their properties.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

[!INCLUDE rbac-lifecycle-workflows-apis-read]

HTTP request

GET /identityGovernance/lifecycleWorkflows/customTaskExtensions

Optional query parameters

This method supports the $select $search, $orderby, and $filter OData query parameters to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of microsoft.graph.identityGovernance.customTaskExtension objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/identityGovernance/lifecycleWorkflows/customTaskExtensions

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/lifecycleWorkflows/customTaskExtensions",
    "@odata.count": 2,
    "value": [
        {
            "id": "c0c5b05b-6b5b-4c8d-8060-2ae8df425f4b",
            "displayName": "Query and assign Teams phone number",
            "description": "Query and assign Teams phone number",
            "createdDateTime": "2022-08-24T20:34:52.3028938Z",
            "lastModifiedDateTime": "2022-08-24T20:35:07.716353Z",
            "callbackConfiguration": null,
            "endpointConfiguration": {
                "@odata.type": "#microsoft.graph.logicAppTriggerEndpointConfiguration",
                "subscriptionId": "c500b67c-e9b7-4ad2-a90d-77d41385ae55",
                "resourceGroupName": "RG-LCM",
                "logicAppWorkflowName": "TeamsPhoneNumber"
            },
            "authenticationConfiguration": {
                "@odata.type": "#microsoft.graph.azureAdTokenAuthentication",
                "resourceId": "b9c29c27-b116-47a9-925b-ff3b19bafa3b"
            },
            "clientConfiguration": {
                "@odata.type": "#microsoft.graph.customExtensionClientConfiguration",
                "maximumRetries": 1,
                "timeoutInMilliseconds": 1000
            }
        },
        {
            "id": "ffcc4c85-5a14-448e-a390-77abf2700369",
            "displayName": "Grant manager access to mailbox and OneDrive",
            "description": "Grant manager access to mailbox and OneDrive",
            "createdDateTime": "2022-08-24T20:36:14.7006029Z",
            "lastModifiedDateTime": "2022-08-24T20:42:07.9885265Z",
            "endpointConfiguration": {
                "@odata.type": "#microsoft.graph.logicAppTriggerEndpointConfiguration",
                "subscriptionId": "c500b67c-e9b7-4ad2-a90d-77d41385ae55",
                "resourceGroupName": "RG-LCM",
                "logicAppWorkflowName": "ManagerAccess"
            },
            "authenticationConfiguration": {
                "@odata.type": "#microsoft.graph.azureAdTokenAuthentication",
                "resourceId": "542dc01a-0b5d-4edc-b3f9-5cfe6393f557"
            },
            "clientConfiguration": {
                "@odata.type": "#microsoft.graph.customExtensionClientConfiguration",
                "maximumRetries": 1,
                "timeoutInMilliseconds": 1000
            },
            "callbackConfiguration": {
                "@odata.type": "#microsoft.graph.identityGovernance.customTaskExtensionCallbackConfiguration",
                "timeoutDuration": "PT5M"
            }
        }
    ]
}