linkedResource_v2 resource type (deprecated)
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.
Caution
The to-do API set built on baseTask was deprecated on May 31, 2022, and stopped returning data on August 31, 2022. Use the todoTask API instead.
Represents an item in a partner application related to a baseTask. An example is an email from where the task was created. A linkedResource object stores information about that source application, and lets you link back to the related item. You can see the linkedResource in the task details view, as shown.
Some linkedResource objects aren't associated with any web URLs, in which case, the webUrl property isn't required. For example, the linked item can be from a custom business app or native platform app, such as an SMS app on a mobile phone. Here's how a linkedResource appears with and without a URL.
Methods
Method | Return type | Description |
---|---|---|
List | linkedResource_v2 collection | Get a list of the linkedResource_v2 objects and their properties. |
Create | linkedResource_v2 | Create a new linkedResource_v2 object. |
Get | linkedResource_v2 | Read the properties and relationships of a linkedResource_v2 object. |
Update | linkedResource_v2 | Update the properties of a linkedResource_v2 object. |
Delete | None | Deletes a linkedResource_v2 object. |
Properties
Property | Type | Description |
---|---|---|
applicationName | String | Field indicating the app name of the source that is sending the linkedResource. |
displayName | String | Field indicating the title of the linkedResource. |
externalId | String | Id of the object that is associated with this task on the third-party/partner system. |
id | String | Server generated ID for the linkedResource. Inherited from entity. |
webUrl | String | Deep link to the linkedResource. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.linkedResource_v2",
"webUrl": "String",
"applicationName": "String",
"displayName": "String",
"externalId": "String",
"id": "String (identifier)"
}