ESC
Type to search...

AgreementAcceptance.Read

Export JSON
Export CSV
Copy URL
Print
Delegated Read User Scope

Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Delegated Permission Admin consent required

Read user terms of use acceptance statuses

Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 exact-category-docs

Properties is shown from stable Microsoft Graph v1.0 metadata.

Property Type Description
agreementFileId StringNullable The identifier of the agreement file accepted by the user.
agreementId StringNullable The identifier of the agreement.
deviceDisplayName StringNullable The display name of the device used for accepting the agreement.
deviceId StringNullable The unique identifier of the device used for accepting the agreement. Supports $filter (eq) and eq for null values.
deviceOSType StringNullable The operating system used to accept the agreement.
deviceOSVersion StringNullable The operating system version of the device used to accept the agreement.
expirationDateTime DateTimeOffsetNullable The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $filter (eq, ge, le) and eq for null values.
id String The identifier of the agreement acceptance. Read-only. Supports $filter (eq).
recordedDateTime DateTimeOffsetNullable The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
state string The state of the agreement acceptance. The possible values are: accepted, declined. Supports $filter (eq).
userDisplayName StringNullable Display name of the user when the acceptance was recorded.
userEmail StringNullable Email of the user when the acceptance was recorded.
userId StringNullable The identifier of the user who accepted the agreement. Supports $filter (eq).
userPrincipalName StringNullable UPN of the user when the acceptance was recorded.

JSON Representation

Microsoft Graph v1.0 exact-category-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
      "@odata.type": "microsoft.graph.agreementAcceptance",
      "agreementFileId": "String",
      "agreementId": "String",
      "deviceDisplayName": "String",
      "deviceId": "String",
      "deviceOSType": "String",
      "deviceOSVersion": "String",
      "expirationDateTime": "String",
      "id": "String (identifier)",
      "recordedDateTime": "String (timestamp)",
      "state": "String",
      "userDisplayName": "String",
      "userEmail": "String",
      "userId": "String",
      "userPrincipalName": "String",
}

Relationships

Relationships metadata is not available for this permission mapping.

View resource documentation

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /identityGovernance/termsOfUse/agreements/{agreementsId}/acceptances
GET /me/agreementAcceptances
GET /users/{id | userPrincipalName}/agreementAcceptances
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /identityGovernance/termsOfUse/agreements/{agreementsId}/acceptances
GET /me/agreementAcceptances
GET /users/{id | userPrincipalName}/agreementAcceptances
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgUserAgreementAcceptance /me/agreementAcceptances
List agreementAcceptances
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaUserAgreementAcceptance /me/agreementAcceptances
List agreementAcceptances

Code Examples

C# / .NET SDK
List acceptances
// Code snippets are only available for the latest version. Current version is 5.x

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.IdentityGovernance.TermsOfUse.Agreements["{agreement-id}"].Acceptances.GetAsync();
JavaScript
List acceptances
const options = {
	authProvider,
};

const client = Client.init(options);

let acceptances = await client.api('/identityGovernance/termsOfUse/agreements/94410bbf-3d3e-4683-8149-f034e55c39dd/acceptances')
	.get();
PowerShell
List agreementAcceptances
Import-Module Microsoft.Graph.Identity.Governance
# A UPN can also be used as -UserId.
Get-MgUserAgreementAcceptance -UserId $userId
Python
List acceptances
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python

result = await graph_client.identity_governance.terms_of_use.agreements.by_agreement_id('agreement-id').acceptances.get()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Delegated permissions and search for AgreementAcceptance.Read

4

Grant Admin Consent

This delegated permission requires admin consent.