Handles the activation of a user based on the provided user ID and activation code.
curl --request POST \
--url https://api.helpyousponsor.com/v1/user/email/verification \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"activationCode": "<string>"
}'
{
"message": "<string>",
"attached": true
}
Data required for user activation
The body is of type object
.
User activation status
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/user/email/verification \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"activationCode": "<string>"
}'
{
"message": "<string>",
"attached": true
}