externalItem 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.
An item added to a Microsoft Graph connection.
Methods
Method | Return Type | Description |
---|---|---|
Create | externalItem | Create an externalItem. |
Get | externalItem | Get an externalItem. |
Update | externalItem | Update an externalItem. |
Delete | None | Delete an externalItem. |
Add activities | microsoft.graph.externalConnectors.externalActivityResult collection | Append additional instances of externalActivity objects on an externalItem. |
Properties
Property | Type | Description |
---|---|---|
acl | microsoft.graph.externalConnectors.acl collection | An array of access control entries. Each entry specifies the access granted to a user or group. Required. |
content | microsoft.graph.externalConnectors.externalItemContent | A plain-text representation of the contents of the item. The text in this property is full-text indexed. Optional. |
id | String | Developer-provided unique ID of the item within the containing externalConnection. Must be alphanumeric and a maximum of 128 characters. Required. |
properties | Object | A property bag with the properties of the item. The properties MUST conform to the schema defined for the externalConnection. Required. |
Relationships
Relationship | Type | Description |
---|---|---|
activities | microsoft.graph.externalConnectors.externalActivity collection | Returns a list of activities performed on the item. Write-only. |
JSON representation
The following JSON representation shows the resource type.
{
"acl": [
{
"type": "everyone",
"value": "67a141d8-cf4e-4528-ba07-bed21bfacd2d",
"accessType": "grant",
"identitySource": "azureActiveDirectory"
}
],
"id": "String (identifier)",
"properties": "Object",
"content": { "@odata.type": "microsoft.graph.externalConnectors.externalItemContent" },
}