Skip to Content

Activate Account

The Activate Account endpoint allows you to activate a user account using a verification code.

POST /api/auth/activate-account

Request Body

{ "email": "user@example.com", "code": "502665" }
PropertyTypeRequiredDescription
emailstringyesThe email address of the user.
codestringyesThe verification code sent to the email address.

Response

{ "data": [], "timestamp": 1234567890, "code": 200, "status": "OK", "meta": {} }

If the endpoint success, it will activate the user account and send him an email to confirm the account activation.