I'm trying to only return the Lead (id) number and Lead (status) field on a GET.
I read about the roles so disallowed all the fields apart from id and status in Leads.
All others in Roles are disabled and the permissions at the top of the roles are set to no
My issue is that it still returns "deleted" and "isFollowed".
So I receive:
{
"id": "661c2d62a8b0702e1",
"deleted": false,
"status": "Dead",
"isFollowed": false
}
These two fields are not in the Leads that I can set to no.
Does anyone know what I need to do so that "deleted" and "isFollowed" don't show/return on my GET?
I read about the roles so disallowed all the fields apart from id and status in Leads.
All others in Roles are disabled and the permissions at the top of the roles are set to no
My issue is that it still returns "deleted" and "isFollowed".
So I receive:
{
"id": "661c2d62a8b0702e1",
"deleted": false,
"status": "Dead",
"isFollowed": false
}
These two fields are not in the Leads that I can set to no.
Does anyone know what I need to do so that "deleted" and "isFollowed" don't show/return on my GET?
Comment