teamworkDeviceActivity 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 activity details for a Microsoft Teams-enabled device, including the active peripheral devices attached to the device.

Inherits from entity.

Methods

Method Return type Description
Get teamworkDeviceActivity teamworkDeviceActivity Read the properties and relationships of a teamworkDeviceActivity object.

Properties

Property Type Description
activePeripherals teamworkActivePeripherals The active peripheral devices attached to the device.
createdBy identitySet Identity of the user who created the device activity document.
createdDateTime DateTimeOffset The UTC date and time when the device activity document was created.
id String Document identifier. Inherited from entity.
lastModifiedBy identitySet Identity of the user who last modified the device activity details.
lastModifiedDateTime DateTimeOffset The UTC date and time when the device activity detail was last modified.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.teamworkDeviceActivity",
  "activePeripherals": {
    "@odata.type": "microsoft.graph.teamworkActivePeripherals"
  },
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "createdDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "lastModifiedDateTime": "String (timestamp)"
}