Skip to content

Latest commit

 

History

History
67 lines (54 loc) · 3.52 KB

File metadata and controls

67 lines (54 loc) · 3.52 KB
title linkedResource_v2 resource type
description Represents an item in a partner application related to a baseTask
author avijityadav
ms.localizationpriority medium
ms.subservice outlook
doc_type resourcePageType
ms.date 06/08/2024

linkedResource_v2 resource type (deprecated)

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

[!INCLUDE todo-deprecate-basetaskapi]

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.

Screenshot showing linked resource card in task details pane. Linked resource card shows Open in Jira, which is the partner application name, and Social media Plan which is the title of linked resource

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.

Image showing how linked resource card with and without URL is displayed. Linked resource card with URL contains Open with partner application Name while linked resource card without URL contains just partner Application name.

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)"
}