I’m trying to set up a custom app connection to Cegid Business API in Make. The authentication request works and returns the following response:
{
“token”: “eyJhbGciOiJSUzI1NiIsImtpZCI6…”,
“expireIn”: 3600
}
In my connection’s response.output, I have:
“response”: {
“output”: {
“token”: “{{body.token}}”
}
}
Then in my modules, I use:
Authorization: Bearer {{connection.token}}
However, {{connection.token}} always comes back as empty.
I’ve already verified that the key is correctly spelled as token (lowercase)