Dear Airtable Community,
I have created an automation that has multiple actions:
-
Triggered by a webhook (beneficiary data comes in with various traits)
-
Creates a new record in Table 1 with this new data as is (no manipulation)
-
Runs a script that assigns a unique ID to beneficiary (based on this new record in step 2)
-
Runs a script that assigns a household ID to beneficiary’s household (based on this new record in step 2)
-
Runs a script that cleans record (created in step 2 with new assigned variables created in steps 3&4) and then creates a new record in Table 2
I have tested the scripts and they all run as expected - however, in steps 3 and 4 I use the .updateRecordAsync function:
Step 3:
var recordID = inputConfig.NewRecordID;
await tableRaw.updateRecordAsync(recordID,{“Household Member ID Generated”: idFinalString});
Step 4:
var recordID = inputConfig.NewRecordID;
await tableRaw.updateRecordAsync(recordID,{“Map Block Code”: codeBlock,“Household Unique ID” : HhUniqueID});
And in both cases I get the error: Could not find record with ID “rec…”
I have initialised the record ID to capture the Airtable record ID of the record created in step 2 using the input.config() variables in the left hand pane (as I have done for other variables where I get the expected value). But it seems that whenever I use input.config() to obtain the Airtable Record ID, I get a value that is not the expected record ID?
I have even searched through all the records in Table 1 manually by creating a new formula field using RECORD_ID() and comparing them to the record ID created using the input.config() method and did not find it.
Do you have any idea what I could be doing wrong? Is there a reason using the Input.config method to obtain the record ID of the record that initiated the whole automation would output an unexpected ID?
Cheers,
Ryan.