What are you trying to achieve?
Hi, I’m a beginner and tried so many things, I just would love a tiny push to get things rolling.
I’m trying to get the value “99999” from the output below:
Contact attribute name: Kundennummer
Contact attribute value: 99999
Any help is much appreciated!
Steps taken so far
Hours of trying many different solutions.
My main approach was: Within Contact attributes
give me Contact attribute value
when Contact attribute name
is Kundennummer
.
{{map(1.contact.custom_attributes; “Contact attribute value”; “Contact attribute name”; “Kundennummer”)}}
Screenshots: scenario setup, module configuration, errors
Hey @Johannes22 - you’re on the right track here.
First, double-check the names of properties in your output bundle.
For example, “Contact attribute value” might just be how this property is displayed in Make, but the property’s name might be contact_attribute_value
. You can check this by hovering over the properties:
(e.g. in the above case, “Email address” is the property’s display value, and “address” is the property’s name.
Once you have the right names, wrap your map()
formula inside a first()
formula.
Why - map()
returns an array of objects, even when it only has one object inside. Using first()
on that array will grab the first object from the array, which in your case will just be the value 99999
.
Here’s an example of what this might look like in the end:
And here’s the formula for copy-pasting, although remember to check/change the names of your properties:
{{first(map(1.contact.custom_attributes; "contact_attribute_value"; "contact_attribute_name"; "Kundennummer"))}}
–
Cheers,
Sierra
3 Likes
Welcome to the Make community!
If you need further assistance, please provide the following:
Please provide the output bundles of each of the relevant modules by running the scenario (you can also get this without re-running your scenario from the History tab).
Click on the white speech bubbles on the top-right of each module and select “Download input/output bundles”.
A. Upload as a Text File
Save each bundle contents in a plain text editor (without formatting) as a bundle.txt
file.
You can upload the file here by clicking on this button:

B. Insert as Formatted Code Block
If you are unable to upload files on this forum, alternatively you can paste the formatted bundles.
These are the two ways to format text so that it won’t be modified by the forum:
-
Method 1: Type code block manually
Add three backticks ```
before and after the content/bundle, like this:
```
content goes here
```
-
Method 2. Highlight and click the format button in the editor

Providing the input/output bundles will allow others to replicate what is going on in the scenario, especially if there are complex data structures (nested arrays and collections) or if external services are involved, and help you with mapping the raw property names from collections.
This will allow others to better assist you. Thanks!
Hope this helps! Let me know if there are any further questions or issues. P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!
— @samliew
Dear @SierraV, you’re amazing.
You showed me everything I needed. It works perfectly.
Thank you very much, and have a wonderful weekend 
2 Likes