Error Catalog
Introduction
The Error Catalog is a section dedicated to listing all the error codes that can be returned by our API's. It serves as a reference guide to help our client quickly identify potential errors during interaction with the API methods. By consulting the catalog, you will be able to understand the most common causes of errors and how to efficiently handle them.
This section is essential to ensure that, when using the API, users are prepared to handle validation failures, operational issues, and internal problems. Each error is identified by a unique code, and its error message provides detailed information about the nature of the problem.
Error Code Structure
Each error code in the API follows a standardized structure, which includes two main components:
- Prefix: The prefix of the error code is EXE, indicating an operational error. This prefix helps distinguish the error as one related to the execution or processing of the request.
- Error Number: The error number is a sequential identifier that distinguishes each specific error. It is used to uniquely identify the error code. The number is assigned in increasing order for each unique error.
- Example Format: EXE[nnnnn], where [nnnnn] is the numeric identifier.
- Example: EXE0001 for "Account creation not allowed."
- Example: EXE0030 for "Account already exists."
- Error Message: Along with the error code, a message is returned that describes the error in detail and provides context about the cause of the problem.
- Example Format: EXE[nnnnn], where [nnnnn] is the numeric identifier.
Understanding the Table
The table below has been organized to facilitate the consultation and understanding of each error. It is divided into the following columns:
- Error Code: A unique identifier for each error, following the structure EXE[nnnnn]. Example: EXE0001, EXE0030.
- Error Message: A description that clearly explains the cause of the error. Example: "Account creation not allowed."
- Methods: A list of the API methods where this error can occur. Example: NewAccount, CreateAccount.
Account Opening Errors
Methods: CreateAccount, CreateLockerAccount, CompanyLimitedAccount, LimitedAccount, NewAccount
The Account Opening Errors section includes failures that occur during the process of creating accounts and registering new customers. These errors are associated with methods responsible for creating and managing accounts within the system. Errors may arise due to issues with the provided data, such as missing required fields, invalid data, or permission problems for creating new accounts.
Errors in this category help identify failures in the registration process, providing information on what needs to be corrected in order to successfully complete the account creation.
ID | Message | Métodos |
---|---|---|
EXE0001 | EXE0001 - Account creation not allowed. | createAccount, newAccount, limitedAccount, companyLimitedAccount |
EXE0002 | EXE0002 - Invalid email. | createAccount, newAccount, limitedAccount, companyLimitedAccount |
EXE0003 | EXE0003 - The provided phone number is invalid. Accepted formats: (DD) XXXXX-XXXX or DDXXXXXXXXX. | createAccount, limitedAccount |
EXE0004 | EXE0004 - Invalid CPF. | createAccount, newAccount, limitedAccount, companyLimitedAccount |
EXE0005 | EXE0005 - You are not authorized to create accounts via API. | createAccount, newAccount, limitedAccount, companyLimitedAccount |
EXE0006 | EXE0006 - The business unit {0} is invalid. | createAccount, newAccount, limitedAccount, companyLimitedAccount, createLockerAccount |
EXE0007 | EXE0007 - All bank details must be filled in when creating a specific account. | createAccount |
EXE0008 | EXE0008 - An account with bank details for the given CPF/CNPJ already exists. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount |
EXE0009 | EXE0009 - The "Bank" parameter cannot exceed 4 characters. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount |
EXE0010 | EXE0010 - The "BankBranch" parameter cannot exceed 10 characters. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount |
EXE0011 | EXE0011 - The "BankAccount" parameter cannot exceed 20 characters. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount |
EXE0012 | EXE0012 - The "BankAccountDigit" parameter cannot exceed 2 characters. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount, updatePersonData |
EXE0013 | EXE0013 - Name is required. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount, updatePersonData |
EXE0014 | EXE0014 - Name must be complete and cannot contain abbreviations. Example: Bruno Silva Bonfim. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount, updatePersonData |
EXE0015 | EXE0015 - The names in the request cannot contain special characters. | newAccount, updatePersonData, createAccount |
EXE0016 | EXE0016 - Nickname must be complete and cannot contain abbreviations. Example: Bruno Silva Bonfim. | newAccount, updatePersonData |
EXE0017 | EXE0017 - The 'PersonName' field contains invalid characters. Only the following characters are allowed: letters (A-Z, a-z), accented letters, numbers (0-9), spaces, period (.), comma (,), ampersand (&), at (@), apostrophes (’ "), parentheses (()), and hyphen (-). | newAccount, updatePersonData, limitedAccount, companyLimitedAccount |
EXE0018 | EXE0018 - The "Name" field cannot contain special characters and numbers. | createLockerAccount, limitedAccount, createAccount, newAccount, companyLimitedAccount, updatePersonData |
EXE0019 | EXE0019 - This business unit does not allow multiple accounts per CPF/CNPJ. | newAccount, createAccount |
EXE0020 | EXE0020 - TaxNumber must have 11 or 14 digits. | newAccount, limitedAccount, createAccount, companyLimitedAccount |
EXE0021 | EXE0021 - An account has already been created for this CPF. | newAccount, limitedAccount, createAccount |
EXE0022 | EXE0022 - The value in the "ValidationType" field must be between 0 and 1. | companyLimitedAccount |
EXE0024 | EXE0024 - Date of birth cannot be null. | newAccount, limitedAccount, createAccount, companyLimitedAccount |
EXE0025 | EXE0025 - Date of birth cannot be later than the current date. | newAccount, limitedAccount, createAccount, companyLimitedAccount |
EXE0026 | EXE0026 - Opening or upgrading accounts for minors is not allowed with the current configuration. | UpdatePersonData |
EXE0027 | EXE0027 - Signature acceptance is required. | newAccount, limitedAccount, createAccount, companyLimitedAccount |
EXE0028 | EXE0028 - Signature date cannot be later than the current date. | newAccount, limitedAccount, createAccount, companyLimitedAccount |
EXE0029 | EXE0029 - The MonthlyIncome field is required. | newAccount, updatePersonData |
EXE0031 | EXE0031 - Invalid CPF/CNPJ. | newAccount, updatePersonData, createAccount |
EXE0032 | EXE0032 - The "Mail" property is required. | newAccount, limitedAccount, createAccount, companyLimitedAccount, updatePersonData |
EXE0033 | EXE0033 - The "WasSigned" field is required. | newAccount, limitedAccount, createAccount, companyLimitedAccount, updatePersonData |
EXE0034 | EXE0034 - The "SignatureDate" field is required. | newAccount, limitedAccount, createAccount, companyLimitedAccount, updatePersonData |
EXE0035 | EXE0035 - The ValidationType field is invalid. | companyLimitedAccount |
EXE0036 | EXE0036 - The "PubliclyExposedPerson" field is required. | newAccount, limitedAccount, createAccount, companyLimitedAccount, updatePersonData |
EXE0037 | EXE0037 - The "PersonName" field is required. | newAccount, createAccount, companyLimitedAccount, updatePersonData |
EXE0038 | EXE0038 - The "TaxNumber" field is required. | newAccount, companyLimitedAccount, updatePersonData |
EXE0039 | EXE0039 - The provided CNPJ is invalid. | newAccount, companyLimitedAccount, updatePersonData, createAccount |
EXE0040 | EXE0040 - The provided constitution date is invalid. | newAccount, companyLimitedAccount, updatePersonData |
EXE0041 | EXE0041 - The ValidationType field is required. | newAccount, companyLimitedAccount, updatePersonData |
EXE0042 | EXE0042 - The "CompanyType" field is invalid. | newAccount, companyLimitedAccount, updatePersonData, limitedAccount |
EXE0043 | EXE0043 - Invalid date of birth. | newAccount, companyLimitedAccount, updatePersonData createAccount |
EXE0044 | EXE0044 - The "PersonRoleType" property is required. | newAccount, companyLimitedAccount, updatePersonData |
EXE0045 | EXE0045 - The "PersonRoleType" field is invalid. | newAccount, companyLimitedAccount, updatePersonData |
EXE0046 | EXE0046 - Account successfully created. | newAccount, companyLimitedAccount, updatePersonData |
EXE0047 | EXE0047 - Account creation for the requested type is not authorized at the moment. | limitedAccount, companyLimitedAccount |
EXE0048 | EXE0048 - The "ConstitutionDate" field is required when creating an account for a legal entity. | newAccount, companyLimitedAccount, updatePersonData |
EXE0049 | EXE0049 - The provided constitution date {0} cannot be later than the current year {1}. | newAccount, companyLimitedAccount, updatePersonData |
EXE0050 | EXE0050 - The "Phone" field is required. | newAccount, companyLimitedAccount, updatePersonData, limitedAccount |
EXE0051 | EXE0051 - The "PersonName" field cannot contain special characters and numbers. | newAccount, companyLimitedAccount, updatePersonData |
EXE0052 | EXE0052 - You must add at least one signer. | newAccount, companyLimitedAccount, updatePersonData |
EXE0053 | EXE0053 - The value in the "PersonRoleType" field must be between 0 and 3. | newAccount, companyLimitedAccount, updatePersonData |
EXE0054 | EXE0054 - The signer cannot be a holder, please change the "PersonRoleType" to a valid value. | newAccount, companyLimitedAccount, updatePersonData |
EXE0055 | EXE0055 - Invalid birth date, the signer must be of legal age. | newAccount, companyLimitedAccount, updatePersonData |
EXE0056 | EXE0056 - The field {0} is required. | newAccount, updatePersonData, companyLimitedAccount, limitedAccount |
EXE0057 | EXE0057 - The holder is a minor and needs a legal guardian. | newAccount |
EXE0058 | EXE0058 - It is not possible to register a person with a birth date later than the current year. | newAccount, companyLimitedAccount, updatePersonData, limitedAccount |
EXE0059 | EXE0059 - Missing required documents {0}. | newAccount, updatePersonData |
EXE0060 | EXE0060 - Documents are required. | newAccount, updatePersonData |
EXE0061 | EXE0061 - You must submit both sides of the ID or Driver's License to continue the registration process. Please resubmit with both documents. | newAccount, updatePersonData |
EXE0062 | EXE0062 - The requested state does not exist. | newAccount, updatePersonData, companylimitedAccount |
EXE0063 | EXE0063 - Public Entity accounts cannot be created. | newAccount, updatePersonData |
EXE0064 | EXE0064 - The "FatherFullName" field must be complete and cannot contain abbreviations. Example: Bruno Silva Bonfim. | newAccount, updatePersonData |
EXE0065 | EXE0065 - The "MotherFullName" field must be complete and cannot contain abbreviations. Example: Ana Silva Bonfim. | newAccount, updatePersonData |
EXE0066 | EXE0066 - The "MotherFullName" field is required. | newAccount, updatePersonData |
EXE0067 | EXE0067 - The "SpouseName" field must be the full name, and cannot contain abbreviations. | newAccount, updatePersonData |
EXE0068 | EXE0068 - The "Nationality" field does not allow special characters. | newAccount, updatePersonData |
EXE0069 | EXE0069 - The "BirthCity" field does not allow special characters. | newAccount, updatePersonData |
EXE0070 | EXE0070 - The "Occupation" field does not allow special characters. | newAccount, updatePersonData |
EXE0071 | EXE0071 - The "CompanyActivity" field does not allow special characters. | newAccount, updatePersonData |
EXE0072 | EXE0072 - The document extension {0} is invalid. | newAccount, updatePersonData |
EXE0073 | EXE0073 - The extension of the document {0} sent does not match the {1} extension specified. | newAccount, updatePersonData |
EXE0074 | EXE0074 - The provided IdentityDocument is invalid. | newAccount, updatePersonData |
EXE0075 | EXE0075 - A KYC Report is required for the holder. | newAccount, updatePersonData |
EXE0076 | EXE0076 - The company activity field is limited to 200 characters or fewer. | newAccount, updatePersonData |
EXE0077 | EXE0077 - The "Nationality" field is required. | newAccount, updatePersonData |
EXE0078 | EXE0078 - The "PersonName" field must be complete and cannot contain abbreviations. Example: Bruno Silva Bonfim. | newAccount, updatePersonData |
EXE0079 | EXE0079 - The "PhoneNumber" property is required. | newAccount, updatePersonData, companyLimitedAccount, limitedAccount, createAccount |
EXE0080 | EXE0080 - The "CompanyType" field is required. | newAccount, updatePersonData, companylimitedAccount |
EXE0081 | EXE0081 - The TaxNumber: {0} of the signer cannot be a CNPJ. | newAccount, updatePersonData, companylimitedAccount |
EXE0082 | EXE0082 - Proof of address for the Person of the Union entity is required. | newAccount, updatePersonData, companylimitedAccount |
EXE0083 | EXE0083 - The "AddressLine" property is required. | newAccount, updatePersonData |
EXE0084 | EXE0084 - The "Neighborhood" property is required. | newAccount, updatePersonData |
EXE0085 | EXE0085 - The "CityName" property is required. | newAccount, updatePersonData |
EXE0086 | EXE0086 - The "State" property is required. | newAccount, updatePersonData |
EXE0087 | EXE0087 - The "Address" property is required. | newAccount, updatePersonData |
EXE0088 | EXE0088 - The "AddressLine" field cannot be null. | newAccount, updatePersonData |
EXE0089 | EXE0089 - The "AddressLine2" field cannot be null. | newAccount, updatePersonData |
EXE0090 | EXE0090 - The "Complement" field cannot be null. | newAccount, updatePersonData |
EXE0091 | EXE0091 - The "Reference" field cannot be null. | newAccount, updatePersonData |
EXE0092 | EXE0092 - The "Neighborhood" field cannot be null. | newAccount, updatePersonData |
EXE0093 | EXE0093 - The "CityName" field cannot be null. | newAccount, updatePersonData |
EXE0094 | EXE0094 - The "Country" field cannot be null. | newAccount, updatePersonData |
EXE0095 | EXE0095 - Invalid contract model. | newAccount |
EXE0096 | EXE0096 - The signatories list cannot be empty. | newAccount |
EXE0097 | EXE0097 - The signatory's 'TaxNumber' must be registered in the 'Person' object. | newAccount |
EXE0098 | EXE0098 - A 'Buyer' must be provided for contract signing. | newAccount |
EXE0099 | EXE0099 - Only one 'Buyer' is allowed in the signatory list. | newAccount |
EXE0100 | EXE0100 - The signatory with 'Buyer' role cannot also have the 'Seller' role. | newAccount |
EXE0101 | EXE0101 - All signatories must have distinct roles. | newAccount |
EXE0102 | EXE0102 - The front ID of the minor is required. | newAccount |
EXE0103 | EXE0103 - The back ID of the minor is required. | newAccount |
EXE0104 | EXE0104 - The ID of the minor is required. | newAccount |
EXE0105 | EXE0105 - Remove the Driver's License from the minor's documents. | newAccount |
EXE0106 | EXE0106 - A legal guardian over the age of 18 is required. | newAccount |
EXE0107 | EXE0107 - No legal guardians under 18 are allowed. | newAccount |
EXE0108 | EXE0108 - Provide documents for the legal guardian. | newAccount |
EXE0109 | EXE0109 - Invalid or missing ZipCode, please check. | newAccount |
EXE0110 | EXE0110 - The "AddressType" property is required. | newAccount |
EXE0111 | EXE0111 - The "AddressType" field is invalid. | newAccount |
EXE0112 | EXE0112 - The "DocumentFile" property is required. | newAccount |
EXE0113 | EXE0113 - The "DocumentFile" cannot be an empty file. | newAccount |
EXE0162 | EXE0162 – The Description field cannot contain special characters. | newAccount, updatePersonData |
EXE0163 | EXE0163 – Invalid expiration date. | newAccount, updatePersonData |
EXE0170 | EXE0170 – The provided {0} document type does not meet this procedure’s requirements. | newAccount, updatePersonData |
EXE0245 | EXE0245 – There is already an account opening request in progress with the provided data. | LimitedAccount |
Update Errors
Methods: UpdatePersonData, ChangePersonInfo
Update Errors occur when there are failures during the process of updating personal data or information of already existing accounts. These errors are related to methods that allow modifying customer or account details within the system. They can happen due to inconsistent data, authentication failures, or permission issues when attempting to perform updates.
ID | Message | Methods |
---|---|---|
EXE0015 | EXE0015 - Special characters not allowed in names | UpdatePersonData |
EXE0016 | EXE0016 - Nickname contains a period (.) not allowed | UpdatePersonData |
EXE0017 | EXE0017 - Company name contains not allowed characters | UpdatePersonData |
EXE0024 | EXE0024 - Mandatory date of birth not provided | UpdatePersonData |
EXE0027 | EXE0027 - Term of acceptance not signed | UpdatePersonData |
EXE0028 | EXE0028 - Term signature date is greater than the current date | UpdatePersonData |
EXE0029 | EXE0029 - Mandatory monthly income not provided | UpdatePersonData |
EXE0031 | Invalid CPF/CNPJ | UpdatePersonData |
EXE0034 | EXE0034 - Term signature date not provided | UpdatePersonData |
EXE0036 | EXE0036 - Politically exposed person not provided | UpdatePersonData |
EXE0048 | EXE0048 - Mandatory incorporation date not provided or is invalid | UpdatePersonData |
EXE0049 | EXE0049 - Incorporation date is greater than the current date (formatted message) | UpdatePersonData |
EXE0051 | EXE0051 - Individual's name contains not allowed characters | UpdatePersonData |
EXE0052 | EXE0052 - Company without signatories | UpdatePersonData |
EXE0054 | EXE0054 - Holder's role not allowed for signatory | UpdatePersonData |
EXE0059 | EXE0059 - Mandatory document not provided (formatted message, various types: Selfie, Contract, etc.) | UpdatePersonData |
EXE0061 | EXE0061 - List of mandatory documents not provided (formatted message) | UpdatePersonData |
EXE0062 | EXE0062 - State not recognized | UpdatePersonData |
EXE0064 | EXE0064 - Father's name contains a period (.) not allowed | UpdatePersonData |
EXE0066 | EXE0066 - Mandatory signatory's mother's name not provided | UpdatePersonData |
EXE0067 | EXE0067 - Spouse's name contains a period (.) not allowed | UpdatePersonData |
EXE0068 | EXE0068 - Mandatory nationality not provided | UpdatePersonData |
EXE0074 | EXE0074 - Duplicate identity document | UpdatePersonData |
EXE0076 | EXE0076 - Company activity exceeds character limit | UpdatePersonData |
EXE0077 | EXE0077 - Mandatory nationality not provided | UpdatePersonData |
EXE0078 | EXE0078 - Invalid name (special characters or format) | UpdatePersonData |
EXE0079 | EXE0079 - Mandatory phone not provided | UpdatePersonData |
EXE0081 | EXE0081 - Invalid signatory's CPF | UpdatePersonData |
EXE0083 | EXE0083 - Mandatory address not provided | UpdatePersonData |
EXE0084 | EXE0084 - Mandatory neighborhood not provided | UpdatePersonData |
EXE0085 | EXE0085 - Mandatory city not provided | UpdatePersonData |
EXE0086 | EXE0086 - Mandatory state not provided | UpdatePersonData |
EXE0087 | EXE0087 - Mandatory address not provided | UpdatePersonData |
EXE0094 | EXE0094 - Mandatory country not provided | UpdatePersonData |
EXE0110 | EXE0110 - Mandatory address type not provided | UpdatePersonData |
EXE0120 | EXE0120 - Mandatory mother's name not provided | UpdatePersonData |
EXE0137 | EXE0137 - The PersonInfos property must be provided. | ChangePersonInfo |
EXE0138 | EXE0138 - The PersonInfoType property must be provided. | ChangePersonInfo |
EXE0139 | EXE0139 - The provided PersonInfoType is invalid. | ChangePersonInfo |
EXE0140 | EXE0140 - Provide a valid PersonInfoValue. | ChangePersonInfo |
EXE0141 | EXE0141 - At least one data type must be provided for the registration update request. | ChangePersonInfo |
EXE0142 | EXE0142 - Person not found by CPF/CNPJ | ChangePersonInfo |
EXE0143 | EXE0143 - HolderTaxNumber must be a CNPJ. | ChangePersonInfo |
EXE0144 | EXE0144 - HolderTaxNumber: {0} and TaxNumber: {1} cannot belong to the same Person. | ChangePersonInfo |
EXE0145 | EXE0145 - No person with TaxNumber {0} was found in BU {1}. | ChangePersonInfo |
EXE0146 | EXE0146 - The TaxNumber {0} is not part of the corporate structure of HolderTaxNumber {1}. | ChangePersonInfo |
EXE0147 | EXE0147 - The TaxNumber {0} is part of a corporate structure; send the company's CNPJ through the HolderTaxNumber field. | ChangePersonInfo |
EXE0148 | EXE0148 - There is already an open registration change request. | ChangePersonInfo |
EXE0149 | EXE0149 - The request has two or more orders for the same data type. | ChangePersonInfo |
EXE0150 | EXE0150 - The field {0} is invalid. | ChangePersonInfo |
EXE0151 | EXE0151 - The field {0} cannot be changed for an Individual. | ChangePersonInfo |
EXE0152 | EXE0152 - The field {0} cannot be changed for a Legal Entity. | ChangePersonInfo |
EXE0153 | EXE0153 - Dear customer, you have exceeded the sensitive data change limit. Please try again in {0} day(s). Thank you for your understanding. | ChangePersonInfo |
EXE0154 | EXE0154 - Dear customer, you have exceeded the sensitive data change limit. Please try again in {0} hour(s). Thank you for your understanding. | ChangePersonInfo |
EXE0155 | EXE0155 - It is necessary to update the mandatory fields: {0}. | ChangePersonInfo |
EXE0156 | EXE0156 - The property {0} is mandatory. | ChangePersonInfo |
EXE0157 | EXE0157 - The field {0} cannot contain only special characters. | ChangePersonInfo |
EXE0158 | EXE0158 - Invalid Zip Code. | ChangePersonInfo |
EXE0159 | EXE0159 – The required {0} does not exist. | ChangePersonInfo |
EXE0160 | EXE0160 – No address exists for this person. | |
EXE0164 | EXE0164 - The BirthCity field does not allow special characters. | ChangePersonInfo |
EXE0165 | EXE0165 - Mandatory state of birth not provided | UpdatePersonData |
EXE0166 | EXE0166 - Mandatory selfie document not provided | UpdatePersonData |
EXE0167 | EXE0167 - Invalid state of birth | UpdatePersonData |
EXE0168 | EXE0168 - Invalid state | UpdatePersonData |
EXE0169 | EXE0169 - Only Limited/Legacy accounts can be updated. | .UpdatePersonData, ChangePersonInfo |
EXE0186 | EXE0186 - The date of birth must be less than today's date. | .UpdatePersonData, ChangePersonInfo |
EXE0188 | EXE0188 - The account holder's name is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0190 | EXE0190 - The value provided for the State field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0191 | EXE0191 - The value provided for the City field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0192 | EXE0192 - The city cannot be different from the state. | .UpdatePersonData, ChangePersonInfo |
EXE0196 | EXE0196 - The ZipCode field is mandatory. | .UpdatePersonData, ChangePersonInfo |
EXE0197 | EXE0197 - The ZipCode field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0198 | EXE0198 - The Country field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0199 | EXE0199 - The Address field cannot be null. | .UpdatePersonData, ChangePersonInfo |
EXE0203 | EXE0203 - The full name field is mandatory. | .UpdatePersonData, ChangePersonInfo |
EXE0204 | EXE0204 - Invalid account holder name. | .UpdatePersonData, ChangePersonInfo |
EXE0205 | EXE0205 - Invalid ZipCode format. | .UpdatePersonData, ChangePersonInfo |
EXE0206 | EXE0206 - The address cannot be empty. | .UpdatePersonData, ChangePersonInfo |
EXE0207 | EXE0207 - The State provided is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0209 | EXE0209 - The full name is mandatory. | .UpdatePersonData, ChangePersonInfo |
EXE0210 | EXE0210 - The full name is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0212 | EXE0212 - The provided date of birth is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0213 | EXE0213 - The Country field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0214 | EXE0214 - The State field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0215 | EXE0215 - The City field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0216 | EXE0216 - The ZipCode field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0217 | EXE0217 - The ZipCode field is mandatory. | .UpdatePersonData, ChangePersonInfo |
EXE0218 | EXE0218 - The Address field is invalid. | .UpdatePersonData, ChangePersonInfo |
EXE0221 | EXE0221 - The date of birth must be less than today's date. | .UpdatePersonData, ChangePersonInfo |
EXE0222 | EXE0222 - It is necessary to provide the ZipCode. | .UpdatePersonData, ChangePersonInfo |
EXE0223 | EXE0223 - State and City do not match. | .UpdatePersonData, ChangePersonInfo |
EXE0224 | EXE0224 - Invalid State. | .UpdatePersonData, ChangePersonInfo |
Rate and Limits Errors
Methods: AccountRate, AccountRateBatch, ChangeAccountOperationLimit
The Rates and Limits Errors section covers errors that occur during the application of rates and limits on accounts. This includes setting and verifying rates, controlling operational limits, and updating limit configurations. Errors in this category are common when there are issues applying, altering, or checking account limits, or when the rates provided do not meet system requirements.
ID | Message | Methods |
---|---|---|
EXE0194 | EXE0194 - The "OperationType" field must be provided. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0195 | EXE0195 - Property {0} is invalid in the request. | accountRate, accountRateBatch |
EXE0196 | EXE0196 - Rate update successfully completed. | accountRate, accountRateBatch |
EXE0197 | EXE0197 - The "TaxNumber" field must be provided. | accountRate, accountRateBatch |
EXE0198 | EXE0198 - It was not possible to pass values less than {0} in the "RateValue" field. | accountRate, accountRateBatch |
EXE0199 | EXE0199 - It is not possible to insert two values for rates. | accountRate, accountRateBatch |
EXE0200 | EXE0200 - The percentage for the rate cannot exceed 100%. | accountRate, accountRateBatch |
EXE0201 | EXE0201 - Invalid "OperationType". | accountRate, accountRateBatch |
EXE0202 | EXE0202 - The rate value cannot be negative. | accountRate, accountRateBatch |
EXE0203 | EXE0203 - Invalid format, please use a period instead of a comma. | accountRate, accountRateBatch |
EXE0204 | EXE0204 - The "Accounts" field must be provided. | accountRate, accountRateBatch |
EXE0205 | EXE0205 - The "AccountKey" property must be provided. | accountRate, accountRateBatch |
EXE0206 | EXE0206 - The "Accounts" field cannot be empty. | accountRate, accountRateBatch |
EXE0207 | EXE0207 - Request quantity exceeded. Correctly specify the number of requests. | accountRate, accountRateBatch |
EXE0208 | EXE0208 - The "AccountKey" {0} provided in the request was not found, please check. | accountRate, accountRateBatch |
EXE0209 | EXE0209 - One or more specified accounts were not found. | accountRate, accountRateBatch |
EXE0210 | EXE0210 - The "RequestIdentifier" field must be provided. | accountRate, accountRateBatch |
EXE0211 | EXE0211 - The "Document" field must be provided. | accountRate, accountRateBatch |
EXE0212 | EXE0212 - RequestIdentifier not identified. | accountRate, accountRateBatch |
EXE0213 | EXE0213 - No PersonWorkflow was found. | accountRate, accountRateBatch |
EXE0214 | EXE0214 - The process does not allow documents of type {0} to be submitted. | accountRate, accountRateBatch |
EXE0215 | EXE0215 - Validation method not enabled. | accountRate, accountRateBatch |
EXE0216 | EXE0216 - Only KYC Report and Digital Certificate documents are accepted. | accountRate, accountRateBatch |
EXE0217 | EXE0217 - No address was found for this CPF/CNPJ, please contact support. | accountRate, accountRateBatch |
EXE0218 | EXE0218 - Method executed successfully. | accountRate, accountRateBatch |
EXE0219 | EXE0219 - No document was found for the provided TaxNumber and DocumentType. | accountRate, accountRateBatch |
EXE0220 | EXE0220 - USN not provided. | accountRate, accountRateBatch |
EXE0221 | EXE0221 - The operation under which the limit will be implemented must be provided. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0222 | EXE0222 - Invalid operation type. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0223 | EXE0223 - You must specify whether the requested limit is daily, weekly, monthly, or nightly. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0224 | EXE0224 - Invalid limit type. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0225 | EXE0225 - You must specify whether the limit is in terms of operation count or monetary value. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0226 | EXE0226 - Invalid limit subtype. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0227 | EXE0227 - The value for the requested new limit must be provided. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0228 | EXE0228 - The specified limit must be greater than or equal to zero. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0229 | EXE0229 - The "Justification" field value is invalid. | changeAccountOperationLimit, accountRate, accountRateBatch |
EXE0230 | EXE0230 - No account holder is registered for the document {0} of the person provided. | changeAccountOperationLimit |
EXE0231 | EXE0231 - No account is registered for the holder {0} and business unit {1} provided. | changeAccountOperationLimit |
EXE0232 | EXE0232 - This account has pending requests. | changeAccountOperationLimit |
EXE0233 | EXE0233 - Limit request created successfully and sent for evaluation. | changeAccountOperationLimit |
EXE0234 | EXE0234 - Limit request performed successfully. | changeAccountOperationLimit |
EXE0235 | EXE0235 - The TransactionType field is mandatory. | changeAccountOperationLimit |
Get and Document Errors
Methods: GetAccount, SendDocument, GetAccountAddres, GetAccountOperationLimit
Get and Document Errors are related to methods used for retrieving account information and associated documents. This category of errors occurs when there are failures in accessing or retrieving specific account data or when sending documents, such as during the identity verification process or account limit inquiries.
ID | Message | Methods |
---|---|---|
EXE0130 | EXE0130: There is no account linked to this Taxpayer ID. | getAccount |
EXE0131 | EXE0131: There is no account linked to this Taxpayer ID. | getAccount |
EXE0132 | EXE0132: The provided AccountKey is invalid, possibly due to a typo. | getAccount |
EXE0133 | EXE0133: The AccountKey does not belong to the registered unit. | getAccount |
EXE0210 | EXE0210: The property RequestIdentifier is required. | sendDocument |
EXE0211 | EXE0211: The property DocumentId is required. | sendDocument |
EXE0212 | EXE0212: RequestIdentifier not found. | sendDocument |
EXE0213 | EXE0213: No PersonWorkflow exists. | sendDocument |
EXE0214 | EXE0214: The process does not allow the sending of documents. | sendDocument |
EXE0215 | EXE0215 – Validation method not enabled. | sendDocument |
EXE0217 | EXE0217 – No address was found for this tax ID (CPF/CNPJ); contact support. | getAccountAddress |
EXE0218 | EXE0218 – Method executed successfully. | getAccountAddress |
EXE0219 | EXE0219 – No document was found for the provided TaxNumber and DocumentType. | getAccountAddress |
Updated 2 days ago