Welcome to the Make community!
This method most closely resembles the structure/fields in your first screenshot— an ARRAY of COLLECTIONS.
To update the array without overriding it, you first need to create a new collection with the same structure, then “add” it into the existing array.
The easiest way to do this, would be to use the JSON “Parse JSON” module:
{ "new_item": {
"label": "other",
"value": "1234567890",
"primary": false
}}
Then, in the Phones field, toggle the “Map” button. This will allow you to map the existing phones array into that field.
Finally, you can use the built-in function:
- add
add(array; value1; value2; ...)
Here’s an example of how you can use this function:
{{ add(1.phones; 2.new_item) }}
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —
Getting Started
- Help Centre | Tutorials – Make’s “manual” - search for help here first
- Make Academy – Basics 101: Learn Make properly to get your money’s worth
Help Centre Basics
- Mapping – What is mapping? What can I map?
- Mapping with arrays – How to map items in an array
- Aggregate an array for mapping complex fields
- Date Format: tokens for
parseDate| tokens forformatDate - HTTP modules – Make a request, Get (download) a file
- Webhooks – Error Handling, Responding to webhooks
Articles & Videos
- Router Magic Formula - YouTube
- Error Handlers in Make - YouTube playlist
- Getting started with OpenAI - How to setup and use OpenAI in Make
- Text Parser module - Use pattern matching to extract the text you want
- Webhooks – Make Academy - tutorial on how to use Webhooks
Useful to Know
How to schedule scenario for first Monday next month (recurring)
How to schedule scenario for the last day next month (recurring)- How to Extract URL Query Parameters Into Variables
- Overview of Different Web Scraping Techniques in Make

- [Free] Use Groq AI to filter spam emails and form submissions!
Automate Follow-Up of Email Leads a Week After- How to group bundles in X amount of bundles (Chunking Arrays)
Hope this helps! Let me know if there are any further questions or issues.
— @samliew

