Skip to main content

Documentation Index

Fetch the complete documentation index at: https://astronomer-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Verify user email

If a user on the platform has trouble verifying their email address, you can use the Houston API to manually verify it for them. To run this mutation, you’ll need:
  • System Admin Permissions
  • The user’s email address. This needs to be the email address that the user provided when they began creating an account on the platform. They must have signed up for an account, and Astro Private Cloud must already have generated an invite token for the user.
The following request verifies the email and returns true or false based on whether the mutation was successful.
mutation verifyEmail {
	verifyEmail (
    email: "<user-email>"
  )
}