UserRecordAccess
Tracks record-level access permissions for users, defining which records they can view or edit.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user record access entry. | |
| UserId | String | True |
User.Id |
Identifier of the user whose access permissions are being defined. |
| RecordId | String | True |
Identifier of the specific record the access permissions apply to. | |
| HasReadAccess | Boolean | True |
Indicates whether the user has permission to view the record. | |
| HasEditAccess | Boolean | True |
Indicates whether the user has permission to modify the record. | |
| HasDeleteAccess | Boolean | True |
Indicates whether the user has permission to delete the record. | |
| HasTransferAccess | Boolean | True |
Indicates whether the user can transfer ownership of the record. | |
| HasAllAccess | Boolean | True |
Indicates whether the user has full access to the record, including read, write, delete, and transfer. | |
| MaxAccessLevel | String | True |
Highest level of access the user has to the record, such as Read, Edit, or Full. |