Skip to main content

Error table

The tables below present the possible errors that can be returned in the DDA flow APIs.

Subscription API Error Table: Registration and Deletion

Trying to register or delete a user in DDA.

HTTP codeError codeError messageResolution
401CDDA301Unauthorized requestProduct is not active on the account or authentication keys are incorrect. Please check authentication or contact support.
403CDDA302Customer not authorized for the productProduct not active on account. Please contact your sales or support representative.
400CDDA001Some mandatory field was not sentTo register users, it is mandatory to send the document (CPF or CNPJ) and the clientName (client name).
For deletion, the document (CPF or CNPJ) is a mandatory field.
If this error is returned, check if this data is being sent.
400CDDA100Campos [clientName] e [document] inválidosInvalid name and document, means that the field is being sent empty (ex: clientName: " "), or is sending incorrect types (ex: document: "abcd"), or incorrect number of digits (ex: document: "123") and etc. Check the data being sent in both fields.
400CDDA100Invalid [clientName] fieldThis error shows that the username is being sent as empty (ex: clientName: " "). Check the clientName field that is being sent.
400CDDA100Campo [document] inválidoThis error shows that the user's document is being sent as empty, or has letters and other special characters, or has too many or too few digits. Check the data being sent in the document field.
400CDDA100Campo [document] inválidoDocument has some problem to be registered, try again later. If the error persists you should contact support to verify the anomaly.
400CDDA101There is already a pending registration request for this documentThe document sent in the registration request has already been sent before and the previous request is being processed, i.e., it has the PROCESSING status. Change the document or wait for the webhook from the first request to return.
400CDDA102User already registeredThe document provided has already been registered with the DDA, i.e., the status of this record is CREATED. Please provide a new document.
400CDDA200It is not possible to register this document at this time. Please try again later.A communication failure occurred. Please contact support.
400CDDA103It is not possible to cancel a registration in progressThe document informed in the deletion request has not yet completed the registration process, that is, this document is in PROCESSING status and for deletion it must have CREATED status. Enter a new document or wait for the successful registration to return to delete the user.
400CDDA104It is not possible to cancel this documentThe document provided does not exist, i.e. it has not been registered. Please provide a new document or check the data being sent.
500CDDA999An unexpected error occurredUnexpected error. Please contact support to verify the anomaly.

Boleto API error table

Attempt to generate payment slips.

HTTP codeError codeError messageResolution
401CDDA301Unauthorized requestProduct is not active on the account or authentication keys are incorrect. Please check authentication or contact support.
403CDDA302Customer not authorized for the productProduct not active on account. Please contact your sales or support representative.
400CDDA004The [document] field was not sentThis error is returned if the field is not sent in the request (e.g. { }). It is mandatory to send the document field.
400CDDA115The request has a limit of up to 20 documentsThis error is returned if more than 20 documents are sent in the request. Remove the excess documents sent and make a request for every 20 documents.
400CDDA116The request must have at least one documentThe field is mandatory and at least 1 valid document must be sent. This error is returned if the field is sent like this: { "document": [ ] }. Check the data sent.
400CDDA117Each document must contain only numbersThis error is returned when the data sent contains letters or symbols, or when it is not sent (e.g. {"document": ["121312asfdf"]} or {"document": [" "]}). Check the document field and send numeric digits.
400CDDA118The CPF must contain 11 numeric characters and the CNPJ must contain 14 numeric charactersReturned when more than 11 digits are sent for CPF or 14 digits for CNPJ. Or when random digits are sent that are not a CPF/CNPJ (ex: {"document": ["12345678911"]}). Check the data sent in the document field and try again.
500CDDA999An unexpected error occurredUnexpected error. Please contact support to verify the anomaly.

Webhooks API Error Table

Attempting to configure webhooks to receive notifications from DDA.

HTTP codeError codeError messageResolution
401CDDA301Unauthorized requestProduct is not active on the account or authentication keys are incorrect. Please check authentication or contact support.
403CDDA302Customer not authorized for the productProduct not active on account. Please contact your sales or support representative.
400CDDA002Some field required for sending the webhook was not providedError returned if typeEventWebhook and url fields are not sent. Check these fields and try again.
400CDDA003Some field required for authentication was not providedFor basicAuthentication authentication, it is mandatory to send the fields: identification and password. For oAuthTwo authentication, it is mandatory to send the fields: endpoint, grantType, clientId and clientSecret. This error is returned if any of the mentioned fields are not being sent, check the request and try again.
400CDDA105Selecione um tipo de evento [Subscription, Deletion, Invoice]This error is returned when no event is reported in the typeEventWebhook field. (Ex: typeEventWebhook: " ")
Please check the data sent and try again.
400CDDA115You can only register one event at a time.Returned when more than one event is reported in the field (Ex: typeEventWebhook: "Deletion, Invoice "). Use one request for each event configuration.
400CDDA106Choose only one authentication typeYou can only use one authentication at a time, either basicAuthentication or oAuthTwo. Make sure both authentications are being sent in the same request.
400CDDA100Invalid field [{field}]Returned when the value entered in the field does not match. (Ex: typeEventWebhook: "Delete" or typeEventWebhook: "1"). It is only possible to register: Deletion, Subscription or Invoice.
400CDDA100Invalid [Url] fieldReturned when the value entered in the field does not match. (Ex: url: " " or url: "aa"). Check the data sent and try again.
400CDDA100Campo [identification] inválidoReturned when no data is entered in this field (Ex: identification: " "). Check the field and try again.
400CDDA100Campo [password] inválidoReturned when no data is entered in this field (Ex: password: " "). Check the field and try again.
400CDDA100Invalid [endpoint] fieldReturned when no data is entered in this field (Ex: endpoint: " "). Check the field and try again.
400CDDA100Invalid [grantType] fieldReturned when no data is entered in this field (Ex: grandType: " "). Check the field and try again.
400CDDA100Invalid [clientId] fieldReturned when no data is entered in this field (Ex: clientId: " "). Check the field and try again.
400CDDA100Invalid [clientSecret] fieldReturned when no data is entered in this field (Ex: clientSecret: " "). Check the field and try again.
500CDDA999An unexpected error occurredUnexpected error. Please contact support to verify the anomaly.