This is typically done via a script or an external automation tool like Integromat.
@Kevin_Rein_Alvia What you are looking for is automations. There is a trigger called ‘When webhook received’ which will allow you to setup a webhook. Assuming you are passing an array via JavaScript, you can then pass that array as input to a Scripts Action.
Here is the documentation for Airtable Script Actions.
What you will need:
- Test the webhook following the instructions on the webhook trigger. (See this for documentation)
- Pass the array as an input to the Script Action. (See this for documentation)
- Use
base.getTable("TABLE_NAME").createRecordsAsync(RECORDS_ARRAY)
(See this for documentation)
Of course, if the data that is received by your webhook is not in the proper format, feel free to add a step between 2 and 3 which manipulates the array into the right format.
@Kevin_Rein_Alvia What you are looking for is automations. There is a trigger called ‘When webhook received’ which will allow you to setup a webhook. Assuming you are passing an array via JavaScript, you can then pass that array as input to a Scripts Action.
Here is the documentation for Airtable Script Actions.
What you will need:
- Test the webhook following the instructions on the webhook trigger. (See this for documentation)
- Pass the array as an input to the Script Action. (See this for documentation)
- Use
base.getTable("TABLE_NAME").createRecordsAsync(RECORDS_ARRAY)
(See this for documentation)
Of course, if the data that is received by your webhook is not in the proper format, feel free to add a step between 2 and 3 which manipulates the array into the right format.
Thank you! This makes sense—will try it out.