Try adding the record ID as an input variable like so:

Yes, you need to specify the triggering record ID as a variable in the input.config.
I show how to do this when sending records to Make’s advanced API platform in the thread below — be sure to look at the screenshots that I posted:
https://air.tableforums.com/t/instantly-trigger-a-make-com-automation-from-airtable-i-e-sending-airtable-data-to-an-external-webhook-such-as-make-com/159
Hi,
to avoid querying the record by RecordID, you can just add those 3 values to a left side
and then
const {status,country,camp_office}=input.config()
note that variable names in code must match variable names you set in the left side.
you can also avoid hardcoding and simply pass all available data from left side, cloning input.config() and possibly add some data to it. of course, it depends on platform API requirements

Thanks so much for your quick responses!