Get credentials information in expression

Hello,

Is there a way to retrieve the credentials information (such as host, url and such) in an expression in the workflow ?

For example, getting the “Host” and “Port” from these fields :arrow_down:

Into this kind of expressions :arrow_down:
image

Thank you

Hi @paulglx,
I do not see an expression variable or an expression method like $credentials, so I don’t think this is possible. Can you explain your use case?

It looks like you are developing your own node, usually your node should manage the credentials internally using something like this:

const credentials = await this.getCredentials('openCellApi');

You can also use your credentials inside your node properties like this.

2 Likes