Hi! I’m trying to use webhooks to set the value of a multi enum Asana field. I have the following code:
unflatten
yes
method
PUT
url
https://app.asana.com/api/1.0/tasks/xxxxx
data
{ "data":{ "custom_fields":{ "GID of Custom Field":"GID of option" } } }
headers
Content-type
application/json
Authorization
Bearer xxxxxxx
And am getting this error: multi_enum_values: e0]: Not the correct type (HTTP Status Code: 400). I’m thinking it might have to do with how multi enum values need to be sent over to Asana, but not sure what the problem is?