Skip to main content
POST
/
embedded-banking
/
v1
/
bank-account-applications
/
{id}
/
verification
Verify an applicant's email using a verification code.
curl --request POST \
  --url https://api.sandbox.tesouro.com/embedded-banking/v1/bank-account-applications/{id}/verification \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "verificationCode": "<string>"
}
'
{
  "isVerified": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

The application ID.

Body

Request model for verifying an applicant's email verification code.

verificationCode
string
required

The email verification code sent to the applicant.

Response

Email verified successfully.

Response model for email verification.

isVerified
boolean
required

Indicates whether the email verification was successful.