For the complete documentation index, see llms.txt. This page is also available as Markdown.

Password

Marks passwords and secrets when creating a connection to avoid exposing them

The password type is dedicated to marking parameters in a connection that should be kept secret when the user is editing a connection.

In addition, when the user types in a password field, the text in the field is masked.

The password parameter type is only available in a connection. If used in other modules, this parameter behaves like a text parameter.

Example

The user is updating an app connection:

[
    {
        "name": "serviceUrl",
        "type": "url",
        "required": true,
        "editable": true,
        "label": "Service URL"
    },
    {
        "name": "username",
        "type": "email",
        "required": true,
        "editable": true,
        "label": "Username"
    },
    {
        "name": "apiToken",
        "type": "password",
        "required": true,
        "editable": true,
        "label": "API Token"
    }
]

Last updated