Account Opening Webhooks
The account opening request response may return the status "pending_kyc_analysis" depending on the partner's integration configuration.
In this case, the response about the approval or rejection of the account opening will be returned asynchronously via webhook.
The account number will be reserved at the time of the opening request, but at this moment the account is not yet open. Only after the completion of QI Tech's KYC analysis will the account be open.
Legal Entity Accounts
Account Opened
WEBHOOK_TYPE
accountSTATUS
account_openedWebhook Body
{
"data": {
"account_info": {
"account_key": "6d30a0b1-cb90-4ceb-b1ea-5bd600cdf3c8",
"account_digit": "2",
"account_branch": "0001",
"account_number": "2359934",
"financial_institution_code": "329"
},
"allowed_user": {
"name": "Juliana Tereza Bernardes",
"document_number": "12364480084"
},
"account_owner": {
"name": "VOVO LUCIA CONVENIENCIA LTDA",
"document_number": "12380702000105"
}
},
"event_datetime": "2022-09-02 22:39:39",
"key": "dc575950-dcce-48e1-99a6-5fb0ada63d86",
"status": "account_opened",
"webhook_type": "account"
}
Account Rejected
WEBHOOK_TYPE
accountSTATUS
account_rejectedWebhook Body
{
"data": {
"account_info": {
"account_digit": "2",
"account_branch": "0001",
"account_number": "2359934",
"financial_institution_code": "329"
},
"allowed_user": {
"name": "Juliana Tereza Bernardes",
"document_number": "97564480084"
},
"account_owner": {
"name": "VOVO LUCIA CONVENIENCIA LTDA",
"document_number": "09080702000105"
}
},
"event_datetime": "2022-09-02 22:39:39",
"key": "dc575950-dcce-48e1-99a6-5fb0ada63d86",
"status": "account_rejected",
"webhook_type": "account"
}
Individual Accounts
Account Opened
WEBHOOK_TYPE
accountSTATUS
account_openedWebhook Body
{
"key":"b5978088-2860-4b78-bd44-77b961354014",
"data":{
"account_info":{
"account_key":"b7593804-2223-48b3-8a61-f48a651de1d4",
"account_digit":"5",
"account_branch":"0001",
"account_number":"3998360",
"financial_institution_code":"329"
},
"account_owner":{
"name":"Pedro Pinho",
"document_number":"97634408077"
}
},
"status":"account_opened",
"webhook_type":"account",
"event_datetime":"2024-01-09 14:35:46"
}
Account Rejected
WEBHOOK_TYPE
accountSTATUS
account_rejectedWebhook Body
{
"key":"84864614-2860-4b78-bd44-77b961354014",
"data":{
"account_info":{
"account_key":"1435dbavf-2860-4b78-bd44-77b961354014",
"account_digit":"5",
"account_branch":"0001",
"account_number":"3998360",
"financial_institution_code":"329"
},
"account_owner":{
"name":"Pedro Pinho",
"document_number":"97634408077"
}
},
"status":"account_rejected",
"webhook_type":"account",
"event_datetime":"2024-01-09 14:35:46"
}