GetLatestMessageActor

The GetLatestMessageActor action retrieves information about the actor whose message triggered the current Skill. We specify what field of the Actor we want to receive using the field parameter. The default value of the field parameter is "name."

GetLatestMessageActor(
  field= "id" | "name" | "timeZone" | "integrationIdn" | "connectorIdn" | "externalId" | "personaId"
)

Example

{{set(
    name="latest_message_actor",
    value=GetLatestMessageActor()
)}}
{{SendMessage(message=latest_message_actor)}}

This example returns the name of the Actor whose message has triggered the current Skill.