Fetch Custom Filed in Click up Node

The idea is:

I was trying to Pass the data from Form to Create new Task in Clickup but was unable to find the custom field in the Additional Fields > Add Field

My use case:

I was trying to create a workflow where User can submit there data for HR Rounds. Based on the data filled by them in the from i want to add entry to task with there details

I think it would be beneficial to add this because:

Currently it is difficult to add the entry as found that we need to add fields in JSON, but similar option in other nodes like google sheets it automatically fetched the title of the filed from the sheets. If the Clickup also fetched the custom fields it will be easy to pass the data and add new entry.

Any resources to support this?

Currently I have seen this thing in make.com.

Are you willing to work on this?

I am not a developer so will unable to contribute.

Custom fields Screenshot

n8n workaround

Currently need to add in json (example is given below) Custom Filed JSON

[
   {
     "id" : "d5f8c55dde343771fc21943f40d512d4"  // id of a field
     "value" : "{{ $json.firstName }}" // data from previous node
   },
   {
     "id" : "714d2853832ec73152485d9f29b60bfb"  // id of a field
     "value" : "{{ $json.lastName }}" // data from previous node
   }
]

image