Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Note
The Microsoft Graph beta APIs related to device management under the teamworkDevice resource type will be deprecated by November 2025 and will no longer be supported after that date.
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 | 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. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@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)"
}