Skip to content

Verify email of Consumer root user

Request

The second step in verifying the root user's email. The randomly generated code sent to the root user via email, using the consumerRootUserEmailVerificationCodeSend operation, is submitted here to verify the root user's email.

This is needed as part of the verification process for basic due diligence.

Note that on the Sandbox Environment, emails are not sent and the verification code is always set to "123456".

Security
api-key
Bodyapplication/jsonrequired
emailstring, (email)(Email)required

E-mail Address of the user

verificationCodestring(VerificationCode)^[0-9]{6}$required

A randomly generated one-time use code used to verify the user's email address or mobile number.

curl -i -X POST \
  https://sandbox.weavr.io/multi/consumers/verification/email/verify \
  -H 'Content-Type: application/json' \
  -H 'api-key: YOUR_API_KEY_HERE' \
  -d '{
    "email": "user@example.com",
    "verificationCode": "string"
  }'

Responses

Success - No Content.

Headers
request-refstringrequired

A request identifier. Providing this reference when contacting our support team will help us investigate your query.

Response
No content