Unofficial Java/Kotlin/JVM library to interact with the FactuurSturen.nl API, currently at v1.
Add the library to your Java 8+/Scala/Kotlin/Groovy application:
For Maven users:
<dependency>
<groupId>net.nextpulse</groupId>
<artifactId>jfactuursturen</artifactId>
<version>(version)</version>
</dependency>
Call the code as follows:
String username = "YOUR_FS_USER_NAME";
String apiToken = "YOUR_API_TOKEN";
FactuurSturenClient client = new FactuurSturenClient(username, apiToken);
List<Invoice> invoices = client.getInvoices();
- Invoices: get all (with/without filters), get one, create, delete
- All other API methods
mvn -P release -Dresume=false release:prepare release:perform