Get User
Retrieve user information by login or ID.
Look up user information by login name or user ID.
Configuration
Inputs
| Name | Code | Type | Required | Description |
|---|---|---|---|---|
| Key | key | Text | Yes | Field to search by (login/id) |
| Value | value | Text | Yes | Value to match |
Outputs
| Name | Type | Description |
|---|---|---|
| id | Text | User ID |
| login | Text | Username |
| confirmed | Boolean | Email confirmation status |
| active | Boolean | Account active status |
| roles | Text[] | User roles |
Usage
By Login
{
"key": "login",
"value": "user@example.com"
}By ID
{
"key": "id",
"value": "user-uuid-here"
}