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.
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

