workbookOperation resource type

Represents the status of a long-running workbook operation.

Methods

Method Return Type Description
Get workbookOperation workbookOperation Retrieve the status of a workbookOperation object.

Properties

Property Type Description
id String The operation ID. Read-only.
status String The current status of the operation. Possible values are: notStarted, running, succeeded, failed.
error workbookOperationError The error returned by the operation.
resourceLocation String The resource URI for the result.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.workbookOperation",
  "id": "String (identifier)",
  "status": "String",
  "resourceLocation": "String",
  "statusCode": "Integer",
  "error": {
    "@odata.type": "microsoft.graph.workbookOperationError"
  }
}