Actions39
- Client Actions
- Loan Actions
Overview
This node integrates with the Fineract API to manage clients and loans. Specifically, the "Client Activate" operation allows users to activate a client in the Fineract system. This is useful in scenarios where clients are created but need to be explicitly activated before they can participate in financial transactions or loan processing.
Practical examples include:
- Activating a newly onboarded client after verifying their information.
- Scheduling activation of clients on a specific date.
- Automating client lifecycle management workflows by activating clients programmatically.
Properties
| Name | Meaning |
|---|---|
| Client ID | The unique identifier of the client to activate. |
| Activation Date | The date when the client should be activated, formatted as YYYY-MM-DD. Optional field. |
Output
The node outputs JSON data representing the response from the Fineract API after attempting to activate the client. This typically includes details about the activated client or confirmation of the activation status.
No binary data output is involved.
Dependencies
- Requires an API key credential for authenticating with the Fineract API.
- Needs configuration of the base URL of the Fineract instance and tenant ID via credentials.
- The node sends requests to the endpoint under
/fineract-provider/api/v1with appropriate headers including tenant identification and content type.
Troubleshooting
Common issues:
- Invalid or missing Client ID will cause the activation request to fail.
- Incorrect API credentials or tenant ID will result in authentication errors.
- Providing an invalid date format for Activation Date may cause request rejection.
Error messages:
- Authentication failures usually indicate misconfigured API keys or tenant IDs.
- "Client not found" errors suggest the provided Client ID does not exist.
- Validation errors may occur if required fields are missing or incorrectly formatted.
To resolve these, verify that the Client ID exists in the Fineract system, ensure credentials are correctly set up, and confirm the Activation Date follows the expected format.
