How to access Asana Custom Field Value

Hey!

I would like to create an automation in Asana that does not exist there.

When I fill out a form, I can enter a birthdate into a custom field. If this field is filled out and not empty, make.com should create another task with a due date that is one year from this birthdate in the future. If the field is empty, nothing should happen.

I am a beginner in reading and processing fields that are read in by make. Below is the structure as it appears in make.
How can I access and further process the value of the custom field 8 date value ‘date: 2023-12-31’?

    {
        "gid": "1206442092697242",
        "assignee": null,
        "assignee_status": "upcoming",
        "completed": false,
        "completed_at": null,
        "created_at": "2024-01-25T11:56:54.856Z",
        "custom_fields": [
/....
            {
                "gid": "1206441099009949",
                "enabled": true,
                "name": "Geburtsdatum",
                "description": "Das Datum des Newborn - für follow up / aftersale",
                "created_by": {
                    "gid": "1167382885661067",
                    "name": "Jan Riedel",
                    "resource_type": "user"
                },
                "display_value": "2023-12-31T00:00:00.000Z",
                "resource_subtype": "date",
                "resource_type": "custom_field",
                "date_value": {
                    "date": "2023-12-31",
                    "date_time": null
                },
                "type": "date"
            },  
/....

(BTW: I don’t know why, but sadly I can’t access date fields in asana to directly make such a rule inside asana. )

Hello :blob_wave:,

You probably already figured it out but you can access the value with the use of the “Mapping an array’s element with a given key” technique.

It could look as in the pictures below.



I hope it helps.

Cheerio :cat_roomba:

3 Likes

Thank you!
I found a solution (actually I don’t know how - hahaha) but I keep your answer in mind!

2 Likes