Actions108
- AI Actions
- Transcribe
- Detect Brand
- Extract Contact Information
- Mood Detection
- Detect Adult Content
- Enitity Detection
- Language Detection
- Too Long To Read
- Check Content Policy
- Detect Faces
- Generate Python Code
- Picture Text Recognition
- Detect Color
- Generate Image
- PDF OCR
- Translation
- Detect Email Type
- Generate Javascript Code
- Picture Object Recognition
- Business Actions
- Calculate Actions
- Code Actions
- Convert Actions
- Crypto Actions
- Date & Time Actions
- Generate Actions
- Image Actions
- Operator Actions
- PDF Actions
- Storage Actions
- Text Actions
- User Actions
Overview
The node provides a versatile set of no-code utilities grouped under various resources, including "Business". For the "Verify BIC" operation within the "Business" resource, it validates a given Bank Identifier Code (BIC). This is useful in financial workflows where verifying the correctness of BICs is necessary before processing payments or integrating with banking systems.
Practical examples:
- Validating user-inputted BIC codes in a form before submission.
- Automating verification of BICs in bulk financial data imports.
- Ensuring compliance and reducing errors in payment processing pipelines.
Properties
| Name | Meaning |
|---|---|
| BIC | The Bank Identifier Code string to verify. |
| Code Variables | A collection of code variables that can be used as dynamic inputs for the code editor function. Each variable has: - Variable Name or ID: Selectable from a list or specified by expression. - Value: The value assigned to the variable. |
Output
The output is a JSON array containing the verification result(s) for each input item. Each element corresponds to the response from the backend API validating the BIC. The exact structure depends on the external service's response but typically includes fields indicating validity and possibly additional metadata about the BIC.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authentication with the external "0CodeKit" API service.
- The node makes HTTP POST requests to the endpoint path
business/validate/bicwith the BIC parameter. - No other external dependencies are required.
Troubleshooting
- Invalid BIC format error: Ensure the BIC string conforms to the standard format (8 or 11 characters, alphanumeric).
- API authentication failure: Verify that the API key credential is correctly configured and active.
- Network or timeout issues: Check network connectivity and API service status.
- Empty or missing BIC input: The BIC property is required; ensure it is provided for each execution item.
- If the node throws errors related to code variables, confirm that the variable names and values are correctly defined and accessible.
Links and References
- Bank Identifier Code (BIC) Wikipedia
- n8n Expressions Documentation
- External API documentation for the "0CodeKit" service (not publicly linked here).