Hello All,
I am currenlty trying to update values of custom fields using Task’s PUT endpoint.
I checked various posts related to this and got below Body JSON format-
{
“data”: {
“gid”: “”,
“custom_fields”: {
“”: <new value: int, “string”, “enum”>
}
}
}
In this case I am getting error: 403: Access Denied.
Remove the gid parameter from your message body; it goes in the URL only, not in the body.
Not 100% sure but I believe even for a number custom field, the value has to be sent as a string, so try that.
There’s really no need to block out gid values when posting in the forum; without a valid auth token for your workspace, someone else having your gids is useless for them.
Hi @Phil_Seeman ,
Thanks for your response and suggestion regarding gid!
I tried removing gid parameter and sent custom field value as string but this still not work.