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

Documentation Index

Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Application (M2M) OAuth2 access token (client credentials).

Path Parameters

id
string<uuid>
required

The credit card 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.