commsOperation resource type
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.
Represents the status of certain long-running operations.
This resource can be returned as the response to an action, or as the content of a commsNotification.
When it's returned as a response to an action, the status indicates whether there will be subsequent notifications. If for example, an operation with status of completed
or failed
is returned, there won't be any subsequent operation via the notification channel.
If an operation with a status of notStarted
, running
or null
is returned, subsequent updates come via the notification channel.
Properties
Property | Type | Description |
---|---|---|
clientContext | String | Unique Client Context string. Max limit is 256 chars. |
ID | String | The operation ID. Read-only. |
resultInfo | resultInfo | The result information. Read-only. |
status | String | Possible values are: notStarted , running , completed , failed . Read-only. |
Relationships
None
JSON representation
The following JSON representation shows the resource type.
{
"clientContext": "String",
"id": "String (identifier)",
"resultInfo": { "@odata.type": "microsoft.graph.resultInfo" },
"status": "notStarted | running | completed | failed"
}