POST
/
v3
/
auth
/
email
/
verify
cURL
curl --request POST \
  --url http://127.0.0.1:3333/v3/auth/email/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "token": "<string>"
}
'
{
  "user": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "image": "<string>",
    "company": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "lastActivityAt": "2023-11-07T05:31:56Z",
    "graphNavigation": "MOUSE",
    "preferredAppAppearance": "<string>",
    "displayedInAppNotifications": {},
    "groupTitlesAutoGeneration": {
      "isEnabled": true,
      "provider": "<string>",
      "credentialsId": "<string>",
      "model": "<string>",
      "prompt": "<string>"
    },
    "preferredLanguage": "<string>"
  },
  "expires": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required
token
string
required
Required string length: 6

Response

Default Response

user
object
required
expires
string
required