user09644 Member

Comments

  • Got it - I was following along in the documentation and the first example made it seem like I could connect without a token. Thanks! Example connect -u jim.smith@xyzcompany.com -p abc123 -s xyzcompany.domo.com
  • @GrantSmith @ST_-Superman-_ Thanks for the comments. I'm trying to authenticate into the Domo CLI. I am able to successfully do it in my developer sandbox instance, but can not in the production version of Domo. I am a major-domo and not an admin. Is there anything special that I need to do to authenticate if my org uses…
  • I guess that I could use the Domo Stats/Governance outputs to then generate the list of ids to tie to various actions that I want to take to update/delete/move/etc objects. I'm curious what the CLI was designed for? I figured something like this would be a good utilization of the tool.
  • @user082291 You'll want to use wildcard character to achieve this. I like to wrap the upper() function to remove casing variability. CASE WHEN UPPER('REASON') LIKE ('RETAL%') then 'Retaliation' ELSE 'Other' END
  • Thanks for the response @GrantSmith . I was hoping to be able to schedule the Jupyter notebook to execute directly since I am able to use many more third party extensions than are available within the Domo Python tile. I will most likely end up using a python script directly with the Domo API to achieve what I am trying…