program resource type (deprecated)
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Caution
This version of the access review API is deprecated and will stop returning data on May 19, 2023. Please use access reviews API.
In the Microsoft Entra access reviews feature, a program is a container, holding program controls. A tenant can have one or more programs. Each control links an access review to a program, to make it easier to locate related access reviews.
A tenant that has onboarded Microsoft Entra access reviews has one program, the Default program
. An authorized administrator can create more programs, for example, to represent compliance initiatives.
Methods
Method | Return Type | Description |
---|---|---|
Create | program | Create a new program. |
Delete | None. | Delete a program. |
List | program collection | Get a collection of all the programs. |
List controls | programControl collection | Get a collection of the controls of a program. |
Update | program | Update a program. |
Properties
Property | Type | Description |
---|---|---|
id | String | The feature-assigned identifier of the program. |
displayName | String | The name of the program. Required on create. |
description | String | The description of the program. |
Relationships
Relationship | Type | Description |
---|---|---|
controls |
programControl | Controls associated with the program. |
JSON representation
The following JSON representation shows the resource type.
{
"id": "string (identifier)",
"displayName": "string",
"description": "string"
}