This API provides services to validate and to confirm bank account data, and to manage payment fraud cases
Bankaccount Data API (2)
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/
https://api.cdq.com/bankaccount-data/rest/
Bank Account Storages Management
Gather endpoints that provide functionalities for managing bank account storages. These functionalities include creating a new storage for bank account data, reading the details of a specific bank account storage identified by its storage ID, modifying the details of an existing bank account storage, deleting an existing bank account storage, and removing all bank account data from a specific storage.
Bank Account Verification
Gather endpoints that provide functionalities for verifying bank account data. These functionalities include confirming the reliability of given bank account data by CDL Trust Scores provided by other companies for the given bank account, curating the given bank account, and uploading bank accounts for batch confirmation.
Bank Accounts
Gather endpoints that provide functionalities for managing bank accounts. These functionalities include reading bank account data, upserting bank account data, deleting bank account data, creating a new data source, reading all data sources, reading a data source by ID, and deleting a data source by ID.
Fraud Case Management
Gather endpoints that provide functionalities for managing fraud cases. These functionalities include creating a new fraud case, reading the details of a specific fraud case identified by its case ID, modifying the details of an existing fraud case, deleting an existing fraud case, and removing all fraud case data from a specific storage.
System Banks
Gather endpoints that provide functionalities for managing system banks. These functionalities include reading system banks, upserting system bank data, deleting system bank data, creating a new data source, reading all data sources, reading a data source by ID, and deleting a data source by ID.
Name of a data source of a storage.
Type of access to the data source.
Enum Value | Description |
---|---|
PRIVATE | Private access. |
ORGANIZATION | Organization access. |
- Mock server
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources
- Production
https://api.cdq.com/bankaccount-data/rest/banks/datasources
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "Internal customers",
"type": "PRIVATE",
"dataTransformationId": "72d6900fce6b326088f5d9d91049e3e6"
}'
OK
Name of a data source of a storage.
Type of access to the data source.
Enum Value | Description |
---|---|
PRIVATE | Private access. |
ORGANIZATION | Organization access. |
The ID of an existing data transformation, which will be used to transform raw records into bank accounts.
Unique identifier for a Data Source of the Storage.
{ "name": "Internal customers", "type": "PRIVATE", "dataTransformationId": "72d6900fce6b326088f5d9d91049e3e6", "id": "648824a691d8d2503d65103e", "creationUser": "johndoe", "createdAt": "2025-08-29T09:46:42Z", "modifiedAt": "2025-08-29T09:46:42Z" }
- Mock server
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources
- Production
https://api.cdq.com/bankaccount-data/rest/banks/datasources
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "limit": "100", "values": [ { … } ] }
- Mock server
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources/{id}
- Production
https://api.cdq.com/bankaccount-data/rest/banks/datasources/{id}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources/648824a691d8d2503d65103e \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
OK
Name of a data source of a storage.
Type of access to the data source.
Enum Value | Description |
---|---|
PRIVATE | Private access. |
ORGANIZATION | Organization access. |
The ID of an existing data transformation, which will be used to transform raw records into bank accounts.
Unique identifier for a Data Source of the Storage.
{ "name": "Internal customers", "type": "PRIVATE", "dataTransformationId": "72d6900fce6b326088f5d9d91049e3e6", "id": "648824a691d8d2503d65103e", "creationUser": "johndoe", "createdAt": "2025-08-29T09:46:42Z", "modifiedAt": "2025-08-29T09:46:42Z" }
- Mock server
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources/{id}
- Production
https://api.cdq.com/bankaccount-data/rest/banks/datasources/{id}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X DELETE \
https://developer.cdq.com/_mock/apis/bankaccount-data-api/api-v2/banks/datasources/648824a691d8d2503d65103e \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "id": "CH1234567890123456789" }