System Fields In Salesforce
🔧 System Fields 🔧
Some fields in the Tooling API are system-generated and read-only.
They are automatically updated during API operations.
Here are some important system fields:
1️⃣ Id:
A globally unique string that identifies a record.
This field is automatically generated when a record is created.
2️⃣ IsDeleted:
Indicates whether the record has been moved to the Recycle Bin (true) or not (false).
3️⃣ CreatedBy:
The user who created the record.
4️⃣ CreatedById:
The ID of the user who created this record.
5️⃣ CreatedDate:
The date and time when this record was created.
6️⃣ LastModifiedBy:
The user who last modified this record.
7️⃣ LastModifiedById:
The ID of the user who last updated this record.
8️⃣ LastModifiedDate:
The date and time when a user last modified this record.
9️⃣ SystemModstamp:
The date and time when this record was last modified by a user or an automated process.
To see which fields are available for a specific object, please refer to the Tooling API WSDL. 💼
Follow Us