curl --request POST \
--url https://{host}/frontend/api/v1/auth/verify \
--header 'Content-Type: application/json' \
--header 'X-Recaptcha-Token: <x-recaptcha-token>' \
--data '{
"verify-token": "<string>"
}'
{
"email": "<string>",
"status": "anonymous",
"success": true
}
curl --request POST \
--url https://{host}/frontend/api/v1/auth/verify \
--header 'Content-Type: application/json' \
--header 'X-Recaptcha-Token: <x-recaptcha-token>' \
--data '{
"verify-token": "<string>"
}'
{
"email": "<string>",
"status": "anonymous",
"success": true
}
6
OK
The response is of type object
.