Skip to main content

Request a Corporate Account

Account opening occurs in two mandatory stages. First, a POST request sends preliminary data to reserve the account. Then, a webhook of type account_request.status_change with the status pending_additional_data is triggered. In the second stage, a PATCH request completes the opening, officially establishing the account with the additional information.

Request

ENDPOINT
/account_request/checking
METHOD
POST
Request Body
{
"account_owner": {
"document_number": "99999999999",
"email": "email@teste.com",
"birthdate": "2017-09-16",
"name": "Titular da Conta"
}
}

Request Body Params

FieldTypeDescriptionCharacters
account_owner *objectObject containing the Account Holder's informationObject account_owner

Object account_owner

FieldTypeDescriptionCharacters
document_number *stringAccount Holder's CPF50
email *stringEmail11
birthdate *stringAccount Holder's birthdate (format YYYY-MM-DD)10
name *stringAccount Holder's Full Name50

Response

STATUS
201
Response Body
{
"account_info": {
"account_branch": "0001",
"account_digit": "0",
"account_number": "1693580"
},
"account_request_key": "f230f1b5-07af-4737-b0e3-8a472304f5e7",
"account_request_status": "pending_kyc_analysis"
}
Warning!

The field account_request_key must be stored and will be used for account opening confirmation.

Response Body Params

FieldTypeDescriptionCharacters
account_info *objectObject containing the Account Holder's informationObject account_info
account_request_key *stringKey for identifying the creation request-
account_request_status *stringKYC Status-

Object account_info

FieldTypeDescriptionCharacters
account_branch *stringBranch Number4
account_digit *stringEmail11
account_number *stringAccount Holder's Full Name50
STATUS
4xx
Response Body: Error
{
"title": "titulo",
"description": "description in English",
"translation": "descrição em portugues",
"code": "codigo",
"extra_fields": {}
}
HTTP Code
status
QI Code
code
Title
title
Description (eng)
description
Description (ptbr)
translation
400QIT000001Bad RequestSchema ErrorErro de Schema
404QIT000404Not FoundResource could not be foundRecurso não encontrado