Originally posted by Unknown
In order to obtain the connection request information you need, you'll need to add 'Lava Run' actions and then add those to workflow attributes.
Attribute - Connection Request Id (Field Type - Integer)
Lava Run:
{% assign connectionId = Workflow | Attribute:'ConnectionRequest','Id' %}
{{ connectionId }}
Attribute - Connection Opportunity Name (Field Type - Text)
Lava Run:
{% assign connectionopp = Workflow | Attribute: 'ConnectionRequest','ConnectionOpportunity' %}
{{ connectionopp }}
Attribute - Connection Opportunity Id (Field Type - Integer)
Lava Run:
{% assign oppId = Workflow | Attribute: 'ConnectionRequest','ConnectionOpportunityId' %}
{{ oppId }}
A sample workflow can be found here.