externalActivityResult resource type

Namespace: microsoft.graph.externalConnectors

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 result of processing an externalActivity. Null if successful.

Inherits from externalActivity.

Properties

Property Type Description
error microsoft.graph.publicError Error information explaining failure to process external activity.
startDateTime DateTimeOffset When the particular activity occurred. Inherited from externalActivity.
type externalConnectors.externalActivityType The type of activity performed. Inherited from externalActivity. The possible values are: viewed, modified, created, commented, unknownFutureValue.

Relationships

Relationship Type Description
performedBy identity Represents an identity used to identify who is responsible for the activity. Inherited from externalActivity.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.externalConnectors.externalActivityResult",
  "type": "String",
  "startDateTime": "String (timestamp)",
  "error": {
    "@odata.type": "microsoft.graph.publicError"
  }
}