Search code examples
make.comintegromat-apps

Integromat app {{connection.param}} not working


I am trying to setup an own App in Integromat

What is required for my App is an URL (and later a Bearer Token) to be entered manually by the user who wants to use my App.

I have the Apps Base:

{
    "baseUrl": "{{connection.url}}",
    "log": {
        "sanitize": ["request.headers.authorization"]
    }
}

a Connection:

Parameters:

[
    {
        "name": "url",
        "label": "url",
        "type": "text",
        "required": true,
        "value":"https://my-server"
    }
]

and the Scenario:

{
    "url": "/api/endpoint",
    "method": "GET",
    "qs": {},
    "headers": "{{connection.headers}}",
    "response": {
        "output": "{{body}}"
    }
}

When i execute, the scenario from my App. The URL seems not to be correctly taken over from the one configured inside the connection parametrs.

Can someone help?


Solution

  • Everything was right. I had to delete the old Connection and create a new one.