0

I am pulling a checkout session from Stripe, where I have a custom field (dropdown) for language.

The Watch and HTTP modules retrieve and return the correct value, but I cannot use it anywhere in the flow in the subsequent modules.

This is the output of the HTTP module for that field:

{
  "dropdown": {
    "default_value": null,
    "options": [
      {
        "label": "DE",
        "value": "de"
      },
      {
        "label": "EN",
        "value": "en"
      },
      {
        "label": "IT",
        "value": "it"
      },
      {
        "label": "FR",
        "value": "fr"
      }
    ],
    "value": "de"
  },

And this is the variable input and output right after:

Set Variable INPUT:

[
  {
    "name": "Language",
    "scope": "roundtrip",
    "value": null
  }
]

Set Variable OUTPUT:

[
  {
    "Language": null
  }
]

The variable input is set to

{{69.data.custom_fields[1].dropdown.value}}

I've been stuck here for a week. Has anyone seen this before or can help me?

Watch Module screenshot Variable Input right after

New contributor
Renato Angelo is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.