v1

latestOpenAPI 3.0.12026-07-227292131.4 KB
users

Verify user's email and complete user registration.

Confirms the user's email address and finalizes the the account creation process.

Upon successful verification:

  • If organization was provided during signup, the new organization will be created and the user will become its owner.
  • If invitationKey was provided during signup, the user joins the invited organization.
post/users/email-verification

Request body

otpCodestring required

A one-time passcode (OTP) provided by the user for email verification.

  • Must be a numeric code.

Response

User email successfully verified and user account is created.

idstring uuid required

The user's ID.

authTokenstring required

A temporary token issued after the signup step. This token is used in the create session API to exchange for access and refresh tokens.

Example response

{
  "id": "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11",
  "authToken": "eyJhbGciOiJIUzI1NiIsInR..."
}