Using output from initial trigger after using it as source module in text aggregator

I used a text aggregator to parse an array to a single string, however after doing this im not able to access any values provided by the initial trigger

Automation Topology:

Text Parser configuration:

Edit: This is the customers object i am parsing from. In this example the output would be “4-person raft, 6-person raft”

"customers": [
            {
                "pk": 833784685,
                "checkin_url": "https://example.com",
                "checkin_status": null,
                "invoice_cost": {
                    "price": null,
                    "tax": 0,
                    "taxable": 0,
                    "feeable": 0,
                    "tax_by_type": {},
                    "total": 0
                },
                "total_cost": {
                    "price": 9700,
                    "tax": 485,
                    "taxable": 9700,
                    "feeable": 9700,
                    "tax_by_type": {
                        "7185": 485
                    },
                    "total": 10185
                },
                "customer_type_rate": {
                    "pk": 7280550538,
                    "customer_type": {
                        "pk": 130566,
                        "singular": "4-person raft",
                        "plural": "4-person rafts"
                    },
                    "customer_prototype": {
                        "pk": 225584,
                        "display_name": "4-person raft"
                    }
                },
                "custom_field_values": []
            },
            {
                "pk": 833784686,
                "checkin_url": "https://example.com",
                "checkin_status": null,
                "invoice_cost": {
                    "price": null,
                    "tax": 0,
                    "taxable": 0,
                    "feeable": 0,
                    "tax_by_type": {},
                    "total": 0
                },
                "total_cost": {
                    "price": 14700,
                    "tax": 735,
                    "taxable": 14700,
                    "feeable": 14700,
                    "tax_by_type": {
                        "7185": 735
                    },
                    "total": 15435
                },
                "customer_type_rate": {
                    "pk": 7280550539,
                    "customer_type": {
                        "pk": 130567,
                        "singular": "6-person raft",
                        "plural": "6-person rafts"
                    },
                    "customer_prototype": {
                        "pk": 225585,
                        "display_name": "6-person raft"
                    }
                },
                "custom_field_values": []
            }
        ],

You have no access to Modules in the gray area.

Add a “set variables or multiple variables” in the gray area and capture the data you need. This Data can be used by “get variable” at any point in your scenario after the module.

I just tried this by adding all the variables i need to a set multiple variable step, however im still not able to “Get” these values after the gray area


You have to type in the name you gave the variable in the “set variable” module.

Example:

Set Variable

Get Varible:

So if you need the data from the trigger module set the variables you need. Then get those data by using a “get variable” or multiple variables, and enter the titles of the needed variables into the get variable module.

1 Like

This worked thank you for your insight. My confusion is that i was expecting the Get Multiple Variable step to automatically populate with the set variable names within the search

1 Like