Getting Started

 View Only
  • 1.  Add to Users table with an Automation?

    Posted 03-17-2020 12:40
    Hello all!
    I have done some training in QB but am just getting started in an actual app and have a noob question:
    Is it possible to add someone to the Users table as an Automation action? (aka Share the app with new user and assign them a particular role)
    I'm looking to automate a fairly straightforward process of receiving a new user request, adding new users to the app, assigning them the proper role, and then adding them to another table and filling in some information from the request form. The part I'm not seeing an easy way to do (yet?) is the adding new user to app & assigning role part.
    Any help on this topic would be appreciated!
    Thanks :)

    ------------------------------
    Hannah Jacobson
    ------------------------------


  • 2.  RE: Add to Users table with an Automation?

    Posted 03-26-2020 11:32
    Just a bump here - does anyone have any wisdom to share about this? Can anyone confirm whether what I want to do is possible or I need to start thinking about other ways to add efficiency?

    ------------------------------
    Hannah Jacobson
    ------------------------------



  • 3.  RE: Add to Users table with an Automation?

    Posted 04-17-2020 17:45
    Hannah 

    Just trying to see where you're coming from. So what you want to do is invite a user then have the automation pull in their information to add to a table? If that is the case not sure how to do that however could suggest setting up a new user table then have that information jump out to other tables.

    ------------------------------
    Joe Rachel
    ------------------------------



  • 4.  RE: Add to Users table with an Automation?

    Posted 04-20-2020 14:14
    So we have an intake request that some people in a specific role fill out to request adding new members to the site. What I'd like to do is create automation to be kicked off when those requests come in that will:
    1) invite the new user to the site, and
    2) add a new record to an existing table, filling in information from the request form.
    I think I know how to do step 2, but can't do it until step 1 has happened so that the new user exists before the new record on another table is created (the existing table uses a User field that must be populated).

    ------------------------------
    Hannah Jacobson
    ------------------------------



  • 5.  RE: Add to Users table with an Automation?

    Posted 04-20-2020 16:51
    Looks like you are going to have a two-step process there.  The user will have to be in the system first. You may have to look to pipelines to solve this. Sorry I am not help here.

    ------------------------------
    Joe Rachel
    ------------------------------



  • 6.  RE: Add to Users table with an Automation?

    Posted 04-21-2020 11:22
    Thanks for your response, I appreciate it!

    ------------------------------
    Hannah Jacobson
    ------------------------------



  • 7.  RE: Add to Users table with an Automation?

    Posted 04-21-2020 11:37
    I am fairly sure the first part could be done with a webhook and using the provisionuser api. https://help.quickbase.com/api-guide/provisionuser.html

    You would need a form for someone to fill out and have it contain the email, first name, last name, and role that you want them in.

    I don't know if this is the best way but I am picturing an automation that watches for a new record to be created with the information above. Then it could create a record in another table that you want it to as well as ticking a checkbox that would set off the provisionuser api call webhook.

    You just need to make sure that checkbox gets ticked and the api call happens before it adds the record to the other table. IT might just work if you force it to insert the email that isn't a user yet. They would show up as red, possibly, but it would work once they were a real user. I haven't actually tried this so it may not work at all but is worth exploring.