• Canio Caputo 2
  • NEWBIE
  • -1 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

First I'll preface this by saying my HTML is lacking.  That being said I think I'm 80% of the way to where I need to be.

My use case:  When my Salesforce users open an Account in Lightning, I want a visual force page to open.  That VF Page will be a Card in Domo.  That Card in Domo will be specific to that Account my users are viewing.  

Currently I have a basic VF Page that can display a generic card from Domo: 

<apex:page standardController="Account">

<iframe src="https://mycompany.domo.com/embed/card/199079?enable=drill" width="600" height="275" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe></apex:page>
 

But now I'm trying to pass the Account.ID into this code which I think is almost correct.  I know people have been able to get this to work in the past, I just can't figure it out:

 

https://mycompany.domo.com/embed/card/12345679?enable=title,summary,&pfilters=
[{%22column%22:%22<Account.Id>>%22,%22dataType%22:%22<STRING>%22,%22operand%22:%22<IN=>%22,%22values%22:[%22<VALUE TO FILTER AS>%22]}]
 



 

First I'll preface this by saying my HTML is lacking.  That being said I think I'm 80% of the way to where I need to be.

My use case:  When my Salesforce users open an Account in Lightning, I want a visual force page to open.  That VF Page will be a Card in Domo.  That Card in Domo will be specific to that Account my users are viewing.  

Currently I have a basic VF Page that can display a generic card from Domo: 

<apex:page standardController="Account">

<iframe src="https://mycompany.domo.com/embed/card/199079?enable=drill" width="600" height="275" marginheight="0" marginwidth="0" frameborder="0" scrolling="no"></iframe></apex:page>
 

But now I'm trying to pass the Account.ID into this code which I think is almost correct.  I know people have been able to get this to work in the past, I just can't figure it out:

 

https://mycompany.domo.com/embed/card/12345679?enable=title,summary,&pfilters=
[{%22column%22:%22<Account.Id>>%22,%22dataType%22:%22<STRING>%22,%22operand%22:%22<IN=>%22,%22values%22:[%22<VALUE TO FILTER AS>%22]}]