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. )