How do I add users to tenant/project? #538
-
Hey! New here and looking for help. I have recently signed up to evaluate Arcade for our AI agent project. Quick and fairly straight forward to integrate into our agent code and get access to all pre-configured tools. What I can't figure out is how to add more users to the project. Now we get this error when a user triggers a tool-call: Error Type: session_inactive And I cant figure out how to register users. How do I do that? Or is it simply not available on the free plan? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @kaalih! Can you share a code sample of how you are doing things? To add new end-users, all you /should/ need to do is change the USER_ID when you make a tool-call, and our platform will auto-add the user and start the auth flow. |
Beta Was this translation helpful? Give feedback.
-
Hi @kaalih , when adding new users, please make sure you're also using a custom user verifier: https://docs.arcade.dev/home/auth/secure-auth-production Arcade's built-in user verifier will work for your own user, but not for other users that may want to use your app. You will need to add an OAuth provider, and implement the endpoint in your app. In case it helps, we have a repo that implements a custom verifier that you can use as a reference. |
Beta Was this translation helpful? Give feedback.
Hi @kaalih , when adding new users, please make sure you're also using a custom user verifier: https://docs.arcade.dev/home/auth/secure-auth-production
Arcade's built-in user verifier will work for your own user, but not for other users that may want to use your app. You will need to add an OAuth provider, and implement the endpoint in your app.
In case it helps, we have a repo that implements a custom verifier that you can use as a reference.