Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/microsoft-graph-applications-application-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Microsoft Graph Admin Admin.admin Applications.application API
description: 'Microsoft Graph API for managing administrative resources in Microsoft Entra ID.
This API enables administrators to manage Microsoft Edge browser settings, Internet Explorer mode configurations,
site lists, shared browser sites, Microsoft 365 Apps installation options, people insights, service announcements,
SharePoint settings, Copilot administration, directory administrative units, and admin consent policies.'
version: 1.0.0
contact:
name: Microsoft Graph API Support
url: https://developer.microsoft.com/graph
servers:
- url: https://graph.microsoft.com/v1.0
description: Microsoft Graph API v1.0 endpoint
tags:
- name: Applications.application
x-ms-docs-toc-type: page
paths:
/applications:
description: Provides operations to manage the collection of application entities.
get:
tags:
- Applications.application
summary: Microsoft Graph List applications
description: Get the list of applications in this organization.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0
operationId: applications.application.ListApplication
parameters:
- name: ConsistencyLevel
in: header
description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries'
schema:
type: string
examples:
example-1:
description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'.
value: eventual
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
- $ref: '#/components/parameters/filter'
- $ref: '#/components/parameters/count'
- name: $orderby
in: query
description: Order items by property values
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
$ref: '#/components/responses/microsoft.graph.applicationCollectionResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
x-ms-docs-operation-type: operation
post:
tags:
- Applications.application
summary: Microsoft Graph Create application
description: Create a new application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0
operationId: applications.application.CreateApplication
requestBody:
description: New entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
required: true
responses:
2XX:
description: Created entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/applications/{application-id}:
description: Provides operations to manage the collection of application entities.
parameters:
- name: application-id
in: path
description: The unique identifier of application
required: true
schema:
type: string
x-ms-docs-key-type: application
get:
tags:
- Applications.application
summary: Microsoft Graph Get application
description: Get the properties and relationships of an application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0
operationId: applications.application.GetApplication
parameters:
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
description: Retrieved entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- Applications.application
summary: Microsoft Graph Upsert application
description: Create a new application object if it doesn't exist, or update the properties of an existing application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0
operationId: applications.application.UpdateApplication
requestBody:
description: New property values
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
delete:
tags:
- Applications.application
summary: Microsoft Graph Delete application
description: Delete an application object. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0
operationId: applications.application.DeleteApplication
parameters:
- name: If-Match
in: header
description: ETag
schema:
type: string
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/applications/{application-id}/logo:
description: Provides operations to manage the media for the application entity.
parameters:
- name: application-id
in: path
description: The unique identifier of application
required: true
schema:
type: string
x-ms-docs-key-type: application
get:
tags:
- Applications.application
summary: Microsoft Graph Get logo for application from applications
description: The main logo for the application. Not nullable.
operationId: applications.application.GetLogo
responses:
2XX:
description: Retrieved media content
content:
application/octet-stream:
schema:
type: string
format: binary
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
put:
tags:
- Applications.application
summary: Microsoft Graph Update logo for application in applications
description: The main logo for the application. Not nullable.
operationId: applications.application.UpdateLogo
requestBody:
description: New media content.
content:
application/octet-stream:
schema:
type: string
format: binary
required: true
responses:
2XX:
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
delete:
tags:
- Applications.application
summary: Microsoft Graph Delete logo for application in applications
description: The main logo for the application. Not nullable.
operationId: applications.application.DeleteLogo
parameters:
- name: If-Match
in: header
description: ETag
schema:
type: string
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
/applications(appId='{appId}'):
description: Provides operations to manage the collection of application entities.
parameters:
- name: appId
in: path
description: Alternate key of application
required: true
schema:
type: string
nullable: true
get:
tags:
- Applications.application
summary: Microsoft Graph Get application
description: Get the properties and relationships of an application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0
operationId: applications.application.GetApplicationByAppId
parameters:
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
description: Retrieved entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- Applications.application
summary: Microsoft Graph Upsert application
description: Create a new application object if it doesn't exist, or update the properties of an existing application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0
operationId: applications.application.UpdateApplicationByAppId
requestBody:
description: New property values
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
delete:
tags:
- Applications.application
summary: Microsoft Graph Delete application
description: Delete an application object. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0
operationId: applications.application.DeleteApplicationByAppId
parameters:
- name: If-Match
in: header
description: ETag
schema:
type: string
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/applications(uniqueName='{uniqueName}'):
description: Provides operations to manage the collection of application entities.
parameters:
- name: uniqueName
in: path
description: Alternate key of application
required: true
schema:
type: string
nullable: true
get:
tags:
- Applications.application
summary: Microsoft Graph Get application
description: Get the properties and relationships of an application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0
operationId: applications.application.GetApplicationByUniqueName
parameters:
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
description: Retrieved entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- Applications.application
summary: Microsoft Graph Upsert application
description: Create a new application object if it doesn't exist, or update the properties of an existing application object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0
operationId: applications.application.UpdateApplicationByUniqueName
requestBody:
description: New property values
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.application'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
delete:
tags:
- Applications.application
summary: Microsoft Graph Delete application
description: Delete an application object. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0
operationId: applications.application.DeleteApplicationByUniqueName
parameters:
- name: If-Match
in: header
description: ETag
schema:
type: string
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/applications/$count:
description: Provides operations to count the resources in the collection.
get:
tags:
- Applications.application
summary: Microsoft Graph Get the number of the resource
operationId: applications.GetCount-8398
parameters:
- name: ConsistencyLevel
in: header
description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries'
schema:
type: string
examples:
example-1:
description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'.
value: eventual
- $ref: '#/components/parameters/search'
- $ref: '#/components/parameters/filter'
responses:
2XX:
$ref: '#/components/responses/ODataCountResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
components:
schemas:
ODataCountResponse:
type: integer
format: int32
microsoft.graph.mutability:
title: mutability
enum:
- ReadWrite
- ReadOnly
- Immutable
- WriteOnly
type: string
microsoft.graph.filterClause:
title: filterClause
required:
- '@odata.type'
type: object
properties:
operatorName:
type: string
description: Name of the operator to be applied to the source and target operands. Must be one of the supported operators. Supported operators can be discovered.
nullable: true
sourceOperandName:
type: string
description: Name of source operand (the operand being tested). The source operand name must match one of the attribute names on the source object.
nullable: true
targetOperand:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.filterOperand'
- type: object
nullable: true
description: Values that the source operand will be tested against.
'@odata.type':
type: string
microsoft.graph.attributeMapping:
title: attributeMapping
required:
- '@odata.type'
type: object
properties:
defaultValue:
type: string
description: Default value to be used in case the source property was evaluated to null. Optional.
nullable: true
exportMissingReferences:
type: boolean
description: For internal use only.
flowBehavior:
$ref: '#/components/schemas/microsoft.graph.attributeFlowBehavior'
flowType:
$ref: '#/components/schemas/microsoft.graph.attributeFlowType'
matchingPriority:
maximum: 2147483647
minimum: -2147483648
type: number
description: If higher than 0, this attribute will be used to perform an initial match of the objects between source and target directories. The synchronization engine will try to find the matching object using attribute with lowest value of matching priority first. If not found, the attribute with the next matching priority will be used, and so on a until match is found or no more matching attributes are left. Only attributes that are expected to have unique values, such as email, should be used as matching attributes.
format: int32
source:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.attributeMappingSource'
- type: object
nullable: true
description: Defines how a value should be extracted (or transformed) from the source object.
targetAttributeName:
type: string
description: Name of the attribute on the target object.
nullable: true
'@odata.type':
type: string
microsoft.graph.referencedObject:
title: referencedObject
required:
- '@odata.type'
type: object
properties:
referencedObjectName:
type: string
description: Name of the referenced object. Must match one of the objects in the directory definition.
nullable: true
referencedProperty:
type: string
description: Currently not supported. Name of the property in the referenced object, the value for which is used as the reference.
nullable: true
'@odata.type':
type: string
microsoft.graph.keyCredential:
title: keyCredential
required:
- '@odata.type'
type: object
properties:
customKeyIdentifier:
type: string
description: A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate.
format: base64url
nullable: true
displayName:
type: string
description: The friendly name for the key, with a maximum length of 90 characters. Longer values are accepted but shortened. Optional.
nullable: true
endDateTime:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: The date and time at which the credential expires. The DateTimeOffset 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.
format: date-time
nullable: true
key:
type: string
description: The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it's always null. From a .cer certificate, you can read the key using the Convert.ToBase64String() method. For more information, see Get the certificate key.
format: base64url
nullable: true
keyId:
pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
type: string
description: The unique identifier (GUID) for the key.
format: uuid
nullable: true
startDateTime:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: The date and time at which the credential becomes valid.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.
format: date-time
nullable: true
type:
type: string
description: The type of key credential; for example, Symmetric, AsymmetricX509Cert.
nullable: true
usage:
type: string
description: A string that describes the purpose for which the key can be used; for example, Verify.
nullable: true
'@odata.type':
type: string
microsoft.graph.nativeAuthenticationApisEnabled:
title: nativeAuthenticationApisEnabled
enum:
- none
- all
- unknownFutureValue
type: string
x-ms-enum-flags:
isFlags: true
microsoft.graph.ODataErrors.InnerError:
title: InnerError
required:
- '@odata.type'
type: object
properties:
request-id:
type: string
description: Request Id as tracked internally by the service
nullable: true
client-request-id:
type: string
description: Client request Id as sent by the client application.
nullable: true
date:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: Date when the error occured.
format: date-time
nullable: true
'@odata.type':
type: string
microsoft.graph.authenticationBehaviors:
title: authenticationBehaviors
required:
- '@odata.type'
type: object
properties:
blockAzureADGraphAccess:
type: boolean
nullable: true
removeUnverifiedEmailClaim:
type: boolean
nullable: true
requireClientServicePrincipal:
type: boolean
nullable: true
'@odata.type':
type: string
microsoft.graph.synchronizationQuarantine:
title: synchronizationQuarantine
required:
- '@odata.type'
type: object
properties:
currentBegan:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: Date and time when the quarantine was last evaluated and imposed. 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.
format: date-time
error:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.synchronizationError'
- type: object
nullable: true
description: Describes the error(s) that occurred when putting the synchronization job into quarantine.
nextAttempt:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: Date and time when the next attempt to re-evaluate the quarantine will be made. 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.
format: date-time
reason:
$ref: '#/components/schemas/microsoft.graph.quarantineReason'
seriesBegan:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$
type: string
description: Date and time when the quarantine was first imposed in this series (a series starts when a quarantine is first imposed, and is reset as soon as the quarantine is lifted). 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.
format: date-time
seriesCount:
type: number
description: Number of times in this series the quarantine was re-evaluated and left in effect (a series starts when quarantine is first imposed, and is reset as soon as quarantine is lifted).
format: int64
'@odata.type':
type: string
microsoft.graph.keyValuePair:
title: keyValuePair
required:
- '@odata.type'
type: object
properties:
name:
type: string
description: Name for this key-value pair
value:
type: string
description: Value for this key-value pair
nullable: true
'@odata.type':
type: string
microsoft.graph.servicePrincipalLockConfiguration:
title: servicePrincipalLockConfiguration
required:
- '@odata.type'
type: object
properties:
allProperties:
type: boolean
description: Enables locking all sensitive properties. The sensitive properties are keyCredentials, passwordCredentials, and tokenEncryptionKeyId.
nullable: true
credentialsWithUsageSign:
type: boolean
description: Locks the keyCredentials and passwordCredentials properties for modification where credential usage type is Sign.
nullable: true
credentialsWithUsageVerify:
type: boolean
description: Locks the keyCredentials and passwordCredentials properties for modification where credential usage type is Verify. This locks OAuth service principals.
nullable: true
isEnabled:
type: boolean
description: Enables or disables service principal lock configuration. To allow the sensitive properties to be updated, update this property to false to disable the lock on the service principal.
tokenEncryptionKeyId:
type: boolean
description: Locks the tokenEncryptionKeyId property for modification on the service principal.
nullable: true
'@odata.type':
type: string
microsoft.graph.objectDefinitionMetadataEntry:
title: objectDefinitionMetadataEntry
required:
- '@odata.type'
type: object
properties:
key:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.objectDefinitionMetadata'
- type: object
nullable: true
description: 'The possible values are: PropertyNameAccountEnabled, PropertyNameSoftDeleted, IsSoftDeletionSupported, IsSynchronizeAllSupported, ConnectorDataStorageRequired, Extensions, LinkTypeName.'
value:
type: string
description: Value of the metadata property.
nullable: true
'@odata.type':
type: string
microsoft.graph.objectDefinition:
title: objectDefinition
required:
- '@odata.type'
type: object
properties:
attributes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.attributeDefinition'
description: Defines attributes of the object.
metadata:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.objectDefinitionMetadataEntry'
description: Metadata for the given object.
name:
type: string
description: Name of the object. Must be unique within a directory definition. Not nullable.
nullable: true
supportedApis:
type: array
items:
type: string
nullable: true
description: The API that the provisioning service queries to retrieve data for synchronization.
'@odata.type':
type: string
microsoft.graph.appManagementPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.policyBase'
- title: appManagementPolicy
required:
- '@odata.type'
type: object
properties:
isEnabled:
type: boolean
description: Denotes whether the policy is enabled.
restrictions:
anyOf:
- $ref: '#/components/schemas/microsoft.graph.customAppManagementConfiguration'
- type: object
nullable: true
description: Restrictions that apply to an application or service principal object.
appliesTo:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: Collection of applications and service principals to which the policy is applied.
x-ms-navigationProperty: true
'@odata.type':
type: string
default: '#microsoft.graph.appManagementPolicy'
x-ms-discriminator-value: '#microsoft.graph.appManagementPolicy'
microsoft.graph.directoryObject:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: directoryObject
required:
- '@odata.type'
type: object
properties:
deletedDateTime:
pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-
# --- truncated at 32 KB (253 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/microsoft-graph/refs/heads/main/openapi/microsoft-graph-applications-application-api-openapi.yml