"multi_enum" fields are missing their selected values inside task objects

Hi @Ran_Oren,

What tool are you using to query/display the task properties? Whatever tool it is, it looks like it hasn’t been programmed to display the multi_enum_values property.

Using the Asana API Explorer to display a task’s custom fields in its native JSON that the API returns, we can see that property:

      {
        "gid": "1202241953594442",
        "enabled": true,
        "enum_options": [
          {
            "gid": "1202241953594443",
            "color": "green",
            "enabled": true,
            "name": "Option 1",
            "resource_type": "enum_option"
          },
          {
            "gid": "1202241953594448",
            "color": "red",
            "enabled": true,
            "name": "Option 2",
            "resource_type": "enum_option"
          }
        ],
        "multi_enum_values": [
          {
            "gid": "1202241953594443",
            "color": "green",
            "enabled": true,
            "name": "Option 1",
            "resource_type": "enum_option"
          },
          {
            "gid": "1202241953594448",
            "color": "red",
            "enabled": true,
            "name": "Option 2",
            "resource_type": "enum_option"
          }
        ],
        "name": "Test Multi-enum",
        "created_by": {
          "gid": "159277432863662",
          "name": "Phil Seeman",
          "resource_type": "user"
        },
        "display_value": "Option 1, Option 2",
        "resource_subtype": "multi_enum",
        "resource_type": "custom_field",
        "type": "multi_enum"
      }

In the above example, I created a multi-enum field with two possible values, Option 1 and Option 2, and for this particular task, I selected them both. You can see they’re both listed under multi_enum_values.