I have a java codebase for performing CRUD on salesforce as an rdbms db. I was looking at the response on my rest api and that on SF setup UI of a custom object that I create in object manager. I have not performed any operation on the custom object. I am seeing a mismatch in column count returned; on SF UI, there not every column is listed where as in the rest response, other columns are returned as well. My question is, why can I not see every column of the table on SF UI?
SF UI custom object fields under "Fields and Relationships" as Field Name:
[
"CreatedById" ,
"LastModifiedById",
"OwnerId",
"Name"
]
Fields returned in rest api:
[
"Id",
"OwnerId",
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]