Custom webhooks, data disappear!

Hello,
I am trying to fetch data from Kommo CRM leads through Webhook and everything is alright in the first step and I can see all the data that I need. But then in the next steps and modules, these data don’t appear, so I cannot use them. Only some of them appear I don’t know according to what. Tryied different ways and tried to redefine the data structure and to use JSON conversion or data variables but nothing works, they don’t appear. See the first of the data correctly appearing, and the the second photo, these data are not there.

@Osama_Al-Areky
Hi, you should need to specify the index.
For example, when you specify an id in custom_fields, you would see something like the following. (Colons and periods might be a little different, I’m not sure…) You need to fill in the index number between the [], enter the number from the first image.
{{1. leads.status: custom_fields[ ].id}}

Thank you but the data (including the ID) don’t appear in the first sense for me to specify it, so even when i specify the ID from the first photo, it is not there, it doesn’t appear as shown in the photo below

Welcome to the Make community!

You can use the built-in functions map and get to access variables within an array.

To do this, you can use the built-in function map

{{ map(complex array; key;[key for filtering];[possible values for filtering separated by a comma]) }}

and the built-in function get

{{ get(object or array; path) }}

You can also combine map and join to combine the variables within an array into a single text string.

and the built-in function join

{{ join(array; delimiter) }}

For more information, the function’s documentation can be found in the Help Centre. and the “Mapping with Arrays” link below. You should also complete the tutorials in the Make Academy, especially Using get() and map() functions.

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 Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

Thank you I am gonna watch the rest of resources you sent but the issue is that the data collections and array … etc don’t appear for me to select them to map them with the map function, only the collection 1 of the custom fields array appear, but the rest of collection from 2 to 10 don’t appear

only the last collection appears !! number 10, but 1 to 9 they don’t appear

Yes, you cannot select items in an array of collections directly, and you’ll have to use the map function with the custom_fields array.

In my previous post, I have provided links to the information that you need, on how to use map and get/first effectively.

Please click on and see the "Mapping with Arrays” link and also complete the tutorials in the Make Academy, especially the “Using get() and map() functions” section.

For further assistance, please provide the following:

Output Bundles of Modules

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.

Sharing these details will make it easier for others to assist you. Thanks!

@samliew