ESC
Type to search...

LearningContent.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows the app to read all learning content in the organization's directory, without a signed-in user.

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

Permission Details

Application Permission

Read all learning content

Allows the app to read all learning content in the organization's directory, without a signed-in user.

Delegated Permission Admin consent required

Read learning content

Allows the app to read learning content in the organization's directory, 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
additionalTags String collection Keywords, topics, and other tags associated with the learning content. Optional.
contentWebUrl String The content web URL for the learning content. Required.
contributors String collection The authors, creators, or contributors of the learning content. Optional.
createdDateTime DateTimeOffsetNullable The date and time when the learning content was created. 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. Optional.
description StringNullable The description or summary for the learning content. Optional.
duration DurationNullable The duration of the learning content in seconds. The value is represented in ISO 8601 format for durations. Optional.
externalId String Unique external content ID for the learning content. Required.
format StringNullable The format of the learning content. For example, Course, Video, Book, Book Summary, Audiobook Summary. Optional.
level Level The difficulty level of the learning content. The possible values are: Beginner, Intermediate, Advanced, unknownFutureValue. Optional.
id String The unique identifier for the learning content. Not nullable. Read-only. Inherited from entity.
isActive BooleanNullable Indicates whether the content is active or not. Inactive content doesn't show up in the UI. The default value is true. Optional.
isPremium BooleanNullable Indicates whether the learning content requires the user to sign-in on the learning provider platform or not. The default value is false. Optional.
isSearchable BooleanNullable Indicates whether the learning content is searchable or not. The default value is true. Optional.
languageTag String The language of the learning content, for example, en-us or fr-fr. Required.
lastModifiedDateTime DateTimeOffsetNullable The date and time when the learning content was last modified. 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. Optional.

Showing 15 of 20 properties.

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.learningContent",
  "additionalTags": [
    "String"
  ],
  "contentWebUrl": "String",
  "contributors": [
    "String"
  ],
  "createdDateTime": "String (timestamp)",
  "description": "String",
  "duration": "String (duration)",
  "externalId": "String",
  "format": "String",
  "level": "String",
  "id": "String (identifier)",
  "isActive": "Boolean",
  "isPremium": "Boolean",
  "isSearchable": "Boolean",
  "languageTag": "String",
  "lastModifiedDateTime": "String (timestamp)",
  "numberOfPages": "Integer",
  "skillTags": [
    "String"
  ],
  "sourceName": "String",
  "thumbnailWebUrl": "String",
  "title": "String"
}

Relationships

Microsoft Graph v1.0 schema-derived

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

Relationship Type Description
additionalTags string collection Keywords, topics, and other tags associated with the learning content. Optional.
contributors string collection The authors, creators, or contributors of the learning content. Optional.
skillTags string collection The skills tags associated with the learning content. Optional.

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 /employeeExperience/learningProviders/{learningProviderId}/learningContents
GET /employeeExperience/learningProviders/{learningProviderId}/learningContents(externalId='{externalId}')
GET /employeeExperience/learningProviders/{learningProviderId}/learningContents/{learningContentId}
Exact Microsoft Learn match

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

Methods
GET /employeeExperience/learningProviders/{learningProviderId}/learningContents
GET /employeeExperience/learningProviders/{learningProviderId}/learningContents(externalId='{externalId}')
GET /employeeExperience/learningProviders/{learningProviderId}/learningContents/{learningContentId}
No Microsoft Learn PowerShell mapping available

Microsoft Graph PowerShell v1.0 commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.

No deterministic PowerShell command map is available for this permission.

Browse PowerShell docs
No Microsoft Learn PowerShell mapping available

Microsoft Graph PowerShell beta commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.

No deterministic PowerShell command map is available for this permission.

Browse PowerShell docs

Code Examples

C# / .NET SDK
Get learningContent
// 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.EmployeeExperience.LearningProviders["{learningProvider-id}"].LearningContents["{learningContent-id}"].GetAsync();
JavaScript
Get learningContent
const options = {
	authProvider,
};

const client = Client.init(options);

let learningContent = await client.api('/employeeExperience/learningProviders/13727311-e7bb-470d-8b20-6a23d9030d70/learningContents/77029588-a660-46b6-ba58-3ce4d21d5678')
	.get();
PowerShell
Connect-MgGraph -Scopes "LearningContent.Read.All"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/employeeExperience/learningProviders/{id}/learningContents"
Python
Get learningContent
# 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.employee_experience.learning_providers.by_learning_provider_id('learningProvider-id').learning_contents.by_learning_content_id('learningContent-id').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 Application permissions or delegated permissions and search for LearningContent.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.