Files
Retrieves file attachments associated with a specific SharePoint list item. Facilitates file management and ensures access to necessary attachments.
Columns
| Name | Type | References | Description |
| Id [KEY] | String | A unique identifier for the file in SharePoint. Useful for tracking and referencing files programmatically. | |
| CreatedBy_Id | String | The unique ID of the user who uploaded the file. Helps track file ownership and permissions. | |
| CreatedBy_Name | String | The full name of the user who uploaded the file. Useful for displaying user-friendly metadata. | |
| CreatedBy_Puid | String | A personal identifier for the user who added the file. Useful for identity management in enterprise environments. | |
| ETag | String | An entity tag (ETag) value used for version control. Helps detect changes and prevent conflicting updates to the file. | |
| LastModifiedBy_Id | String | The unique ID of the user who last modified the file. Useful for auditing changes and tracking recent edits. | |
| LastModifiedBy_Name | String | The full name of the user who last modified the file. Helps in identifying contributors to a document. | |
| LastModifiedBy_Puid | String | A personal identifier for the user who last modified the file. Useful for distinguishing unique users across sessions. | |
| Name | String | The name of the file, including its extension (such as 'document.pdf'). Essential for file identification. | |
| Size | Long | The size of the file in bytes, excluding any Web Parts used in the file. Helps monitor storage usage and manage large files. | |
| TimeCreated | Datetime | The date and time when the file was originally created. Useful for tracking document history and retention policies. | |
| TimeLastModified | Datetime | The date and time when the file was last modified. Helps determine the most recent update to the file. | |
| Url | String | The full URL of the file. Useful for direct access and linking within SharePoint. | |
| List | String | The display name of the SharePoint list or library where the file is stored. Helps in organizing and retrieving files efficiently. |