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>"
}Verify Email Authentication with the Sendbot API v3.
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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.