FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. lambert.torres
    3. Topics
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 10
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by lambert.torres

    • L

      Unsolved Resending email

      Q&A
      • • • lambert.torres
      2
      0
      Votes
      2
      Posts
      584
      Views

      A

      @lambert-torres there is no queue that is kept, you would either need to look at the logs to specifically find the users during that time. Or follow the below steps.

      You can resend the verification emails for newly registered users. FusionAuth provides an API endpoint for resending a user registration verification email.

      https://fusionauth.io/docs/v1/tech/apis/users#resend-verification-email

      Here are the steps to follow if you want to manually verify:

      Use the PUT /api/user/verify-email?email={email} endpoint to request a new verification email. This will return a verificationId in the response. curl --location --request PUT 'http://localhost:9011/api/user/verify-email?email=<my_email@my_email.com>' \ --header 'Authorization: <API KEY>' \ --header 'X-FusionAuth-TenantId: <TENANT_ID>' The response should look like this: { "verificationId": "SOME_REALLY_LONG_ALPHANUMERIC_STRING" } Use the POST /api/user/verify-email?verificationId={verificationId} endpoint to mark the user as email verified via API.

      Please note that you need to ensure that you don't have skipVerification set to true when a user registers for an application via API and your application has verifyRegistration set to true. This can be set programmatically via the API or via the admin UI.

      For more details, you can refer to the FusionAuth documentation and the FusionAuth community forum.

      Please ensure that your connection to SendGrid is restored before attempting to resend the emails.

    • L

      Unsolved Email verification template

      General Discussion
      • • • lambert.torres
      9
      0
      Votes
      9
      Posts
      1.8k
      Views

      L

      Dealing with email verification can be a real headache. Every site wants to double-check who you are these days.

    • L

      Unsolved events to webhook

      General Discussion
      • • • lambert.torres
      2
      0
      Votes
      2
      Posts
      492
      Views

      joshuaJ

      @lambert-torres replied out of band to this forum. This may have been addressed in version 1.38.0 and beyond.

      Thanks,
      Josh

    • L

      all extended data are saved as arrays

      General Discussion
      • • • lambert.torres
      2
      0
      Votes
      2
      Posts
      3.2k
      Views

      joshuaJ

      Hi @lambert-torres

      Can you please provide some context as to what you are looking to achieve?

      Are you storing this data on the user.data.* fields? How are you storing this data/arrays programmatically?

      Thanks,
      Josh

    • L

      update user id

      General Discussion
      • • • lambert.torres
      2
      1
      Votes
      2
      Posts
      551
      Views

      danD

      @lambert-torres

      Hiya,

      There is no way to update a user Id after the account has been created. However, you can always specify a valid UUID when creating a user (and, indeed, most other FusionAuth resources).

      Simply provide a valid UUID on the path of the POST request.

      https://fusionauth.io/docs/v1/tech/apis/users#create-a-user has more.

      Based on what you shared, that should work. Let me know if there's nuance I missed.

      Thanks for using FusionAuth!

      Dan

    • L

      remove user from all groups

      General Discussion
      • • • lambert.torres
      2
      0
      Votes
      2
      Posts
      444
      Views

      danD

      @lambert-torres

      Hiya, there is no API I know of that will remove a user from all groups, but you can certainly chain APIs. The way I'd do it would be to retrieve the user using the User API, iterate all user.memberships and get the groupId from each one. Then I'd use the Group API to remove the user from each group, using DELETE against /api/group/member?groupId={groupId}&userId={userId}

      Hope that helps, thanks for using FusionAuth!

    • L

      Unsolved add to default group from registration

      Q&A
      • • • lambert.torres
      2
      0
      Votes
      2
      Posts
      559
      Views

      danD

      @lambert-torres I'd recommend using a webhook, probably this one: https://fusionauth.io/docs/v1/tech/events-webhooks/events/user-registration-create-complete and then in the webhook receiver, calling the API to add them to a group.

      There is no built in support for this functionality.