Table "SharePoint Graph List Item"
ID 9131
Namespace: System.Integration.Sharepoint
Represents a SharePoint list item as returned by Microsoft Graph API.
Properties
| Name | Value |
|---|---|
| Access | Public |
| TableType | Temporary |
| DataClassification | SystemMetadata |
| InherentEntitlements | X |
| InherentPermissions | X |
| Extensible | False |
Fields
| Name | Type | Description |
|---|---|---|
| Id | Text[250] | |
| ListId | Text[250] | |
| Title | Text[250] | |
| ContentType | Text[100] | |
| WebUrl | Text[2048] | |
| CreatedDateTime | DateTime | |
| LastModifiedDateTime | DateTime | |
| FieldsJson | Blob | |
| SystemId | Guid | |
| SystemCreatedAt | DateTime | |
| SystemCreatedBy | Guid | |
| SystemModifiedAt | DateTime | |
| SystemModifiedBy | Guid | |
| SystemRowVersion | BigInteger |
Methods
SetFieldsJson
Sets the custom fields for the list item as a JSON object.
procedure SetFieldsJson(FieldsJsonObject: JsonObject)
Parameters
| Name | Type | Description |
|---|---|---|
| FieldsJsonObject | JsonObject |
JSON object containing the custom fields |
GetFieldsJson
Gets the custom fields for the list item as a JSON object.
procedure GetFieldsJson(var FieldsJsonObject: JsonObject): Boolean
Parameters
| Name | Type | Description |
|---|---|---|
| FieldsJsonObject | JsonObject |
JSON object that will contain the custom fields |
Returns
| Type | Description |
|---|---|
| Boolean |
True if fields were retrieved successfully, false otherwise |
GetFieldValue
Gets a specific field value from the custom fields.
procedure GetFieldValue(FieldName: Text; var FieldValue: Text): Boolean
Parameters
| Name | Type | Description |
|---|---|---|
| FieldName | Text |
Name of the field to retrieve |
| FieldValue | Text |
Text value that will contain the field value |
Returns
| Type | Description |
|---|---|
| Boolean |
True if field was found, false otherwise |