Skip to content

Latest commit

 

History

History
140 lines (114 loc) · 5.39 KB

File metadata and controls

140 lines (114 loc) · 5.39 KB
title List agreementAcceptances
description Retrieve a list of a user's agreementAcceptance objects.
ms.localizationpriority medium
author AlexFilipin
ms.subservice entra-users
doc_type apiPageType
ms.date 04/17/2024

List agreementAcceptances

Namespace: microsoft.graph

Allows the signed-in user to retrieve their agreementAcceptance objects.

[!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]

Important

This API allows the signed-in user to retrieve their agreementAcceptance objects. It doesn't require them to have any additional Microsoft Entra roles as the Default user role authorizes them to retrieve their agreement acceptances.

HTTP request

GET /me/agreementAcceptances

GET /users/{id | userPrincipalName}/agreementAcceptances

[!INCLUDE me-apis-sign-in-note]

Optional query parameters

This method supports the $select OData query parameter to help customize the response.

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 agreementAcceptance objects in the response body.

Example

Request

GET https://graph.microsoft.com/v1.0/me/agreementAcceptances

[!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

Note: The response object shown here might be shortened for readability.

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

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#agreementAcceptances",
    "value": [
        {
            "id": "94410bbf-3d3e-4683-8149-f034e55c39dd_d4bb5206-77bf-4d5c-96b4-cf7b0ed3be98",
            "agreementId": "94410bbf-3d3e-4683-8149-f034e55c39dd",
            "userId": "d4bb5206-77bf-4d5c-96b4-cf7b0ed3be98",
            "deviceId": "00000000-0000-0000-0000-000000000000",
            "deviceDisplayName": null,
            "deviceOSType": null,
            "deviceOSVersion": null,
            "agreementFileId": "08033369-8972-42a3-8533-90bbd2757a01",
            "userDisplayName": "Megan Bowen",
            "userPrincipalName": "MeganB@contoso.com",
            "userEmail": "MeganB@contoso.com",
            "recordedDateTime": "2022-03-04T14:11:22.6658376Z",
            "expirationDateTime": null,
            "state": "accepted"
        }
    ]
}