Receiving a signature from tally forms

Hi makers ! :waving_hand:

I have a scenario watching new answers from a tally form, the tally form is used to gather signatures. The link sent to access it contains different variables used on the form (name, event name, date and id from the Airtable DB).

The problem I have is that the {collection} that contains the signature is not accessible and it was when I first triggered this scenario. And the column in Airtable is not receiving anything.

It should look like these,

Welcome to the Make community!

Please provide example output bundles of the relevant module 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.

This will allow others to better assist you. Thanks!

— @samliew

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

1 Like

Hi, thanks @samliew for the advice. Here is the output bundle from Tally.

[
    {
        "responseId": "Xxxz604",
        "submissionId": "Xxxz604",
        "respondentId": "ypkMX4",
        "formId": "wbzLl2",
        "formName": "ESF+ Signatures",
        "createdAt": "2025-03-31T10:10:06.000Z",
        "fields": {
            "firstName": "Pablo",
            "lastName": "Despoisse-Chagot",
            "eventName": "IV 28 march 2025 copy",
            "eventDate": "2025-03-28",
            "mentorID": "48512",
            "recordID": "recpeyFXE1ukv96Uj",
            "Presence signature": [
                {
                    "id": "WAPL4J",
                    "name": "2d7dbc7d-76d9-4810-b498-c429b6b8a4a4.png",
                    "url": "https://storage.tally.so/private/2d7dbc7d-76d9-4810-b498-c429b6b8a4a4.png?id=WAPL4J&accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IldBUEw0SiIsImZvcm1JZCI6IndiekxsMiIsImlhdCI6MTc0MzQxNTgwNn0.pasE-UvIRGeekrdFIi-kx8cJLLkcHJiDF8Q5Etc4l2E&signature=051aed7a3917bca332f9bac81b49f11855bac733c223c9efeb75c1f2ae8c3879",
                    "mimeType": "image/png",
                    "size": 7717
                }
            ]
        },
        "eventId": "b4ce3430-f1ff-4af8-8e85-93d5542f7e6b",
        "fieldsById": {
            "question_qDLq95_245ecc7c-3d42-4b3a-bfc5-d2a71a278223": "Pablo",
            "question_Qe1qb1_02a759fb-4f2b-4e48-9ce7-dacbc520d051": "Despoisse-Chagot",
            "question_99BY8X_38341f4b-8c0a-45a7-80ca-b8261a1226ec": "IV 28 march 2025 copy",
            "question_eQMGVQ_986495e1-ac8d-478e-bdcd-ded93bcc5c25": "2025-03-28",
            "question_WE27BP_1d4c9b18-0816-47e7-8350-bfd5bee90e2e": "48512",
            "question_a59MgE_431d82c0-5b29-4b2b-ab2e-7496daf4a6f2": "recpeyFXE1ukv96Uj",
            "question_WE26LR": [
                {
                    "id": "WAPL4J",
                    "name": "2d7dbc7d-76d9-4810-b498-c429b6b8a4a4.png",
                    "url": "https://storage.tally.so/private/2d7dbc7d-76d9-4810-b498-c429b6b8a4a4.png?id=WAPL4J&accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IldBUEw0SiIsImZvcm1JZCI6IndiekxsMiIsImlhdCI6MTc0MzQxNTgwNn0.pasE-UvIRGeekrdFIi-kx8cJLLkcHJiDF8Q5Etc4l2E&signature=051aed7a3917bca332f9bac81b49f11855bac733c223c9efeb75c1f2ae8c3879",
                    "mimeType": "image/png",
                    "size": 7717
                }
            ]
        }
    }
]

Welcome to the Make community!

To do this, you can use the built-in functions map and get —

e.g.: (paste this into the field)

{{ first(map(14.fields.`Presence signature`; "url")) }}

For more information, the function’s documentation can be found in the Help Centre. You should also complete the tutorials in the Make Academy.

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.

Hi, thanks, where does the 14 comes form in your formula ?

That’s your module number.