killbill-client-java
killbill-client-java copied to clipboard
Java client library for Kill Bill
```java Account body = new Account(); body.setName("test3"); body.setCurrency(Currency.USD); body.setExternalKey("89f20977-f937-4bd7-82f9-ac4ef07b9999"); body.setEmail("[email protected]"); accountApi.createAccount(body, requestOptions); ``` This results in an IOException, as there is no response body. Running the code again results in...
For code like: ```java subscriptionApi.getSubscriptionByKey("xyzzy", requestOptions) ``` The client returns null on 404 errors. This is unexpected. The client should throw a KillBillClientException containing the response code.