A lightweight and developer-friendly Spring Boot library that simplifies integration with OpenWealth API.
Disclaimer
This project is not affiliated with or endorsed by OpenWealth or Synpulse. It is an independent effort to provide a convenient library for developers working with OpenWealth APIs.For more information about OpenWealth, visit their official website.
- Compatible with OpenWealth APIs:
- 🚀 Order Placement API
v2.0.8
- 👥 Customer Management API
v2.0.6
- 🔒 Custody Services API
v2.0.3
- 🚀 Order Placement API
- Simplifies integration with OpenWealth backend services using a Fluent API design
- Supports both synchronous and asynchronous operations
<dependency>
<groupId>com.acltabontabon</groupId>
<artifactId>openwealth-spring-starter</artifactId>
<version>1.0.0-Alpha.3</version>
</dependency>
implementation 'com.acltabontabon:openwealth-spring-starter:1.0.0-Alpha.3'
Here's a simple usage example to get you started:
@Slf4j
@Component
public class Example {
@Autowired
private CustomerService customerService;
public void printCustomers() {
Result<List<Customer>> result = customerService.customers().fetch();
log.info("List of customers: {}", result.getData());
}
}
For full documentation and examples: Documentation
Love this project? Support its development by buying me a coffee! ☕
This project is licensed under the MIT License. See the LICENSE file for details.