GetUser
Returns the values associated with a specific user.
GetUser(
field: str,
personaId: str | None = None
)
Where:
- field: Literal[“id”, “title”, “description”, “name”, “type”] = “name”
Example 1
A basic example with no GetUser field strings and returning the user's name. In this case, the user is named Susan.
{{set(name='user_', value=GetUser())}}
{{SendMessage(message=user_)}}
Response: Susan
Updated 7 months ago