Hello all,
I am creating a custom api page and have the following requirments
1) on a POSTto create the new record i need the ability to include information for all fields example
{
firstname: "John",
lastname: "Doe",
Age: "5",
}
After the record is created i want to be able to issue a PATCH command to update the age
{
age="6"
}
this works correctly
QUESTION: How do i limit the patch so that only age can be updated but not first or last name, so the below should error
{
firstname: "Bob",
lastname: "Doe",
Age: "5",
}
1)Setting the editable property on the field seems to prevent entering data on the Original post