Skip to content

Commit 3a39a34

Browse files
committed
chore: Added auth/verify-email endpoint in documentation
1 parent b3a8c33 commit 3a39a34

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docs/api/blueprint/auth/email_verification.apib

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,28 @@ Sends the token to verify the account associated with the provided email id via
2727
{
2828
"message": "Verification email resent"
2929
}
30+
31+
## Verify Email [/v1/auth/verify-email]
32+
33+
### Verify the email via auth token [POST]
34+
Verifies the user email via token.
35+
36+
+ Request
37+
38+
+ Headers
39+
40+
Content-Type: application/json
41+
42+
+ Body
43+
44+
{
45+
"data": {
46+
"token": "your token"
47+
}
48+
}
49+
50+
+ Response 200 (application/json)
51+
52+
{
53+
"message": "your token"
54+
}

0 commit comments

Comments
 (0)