You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the latest version of the KillBill API, GET /1.0/kb/catalog/product expects a LocalDateTime, not a LocalDate. In the current implementation of the library, LocalDate is passed, which causes an exception.
Now kill bill requires date time in ISO format. You can look at the Kill Bill code to see for yourself. The implementation of the getLastEventBeforeDate method uses the ISO format
The text was updated successfully, but these errors were encountered:
Peytob
changed the title
getProductForSubscriptionAndDate
Wrong date format in CatalogApi::getProductForSubscriptionAndDate
Apr 13, 2023
killbill-client-java/src/main/java/org/killbill/billing/client/api/gen/CatalogApi.java
Line 254 in 5e267bf
According to the latest version of the KillBill API, GET /1.0/kb/catalog/product expects a LocalDateTime, not a LocalDate. In the current implementation of the library, LocalDate is passed, which causes an exception.
Now kill bill requires date time in ISO format. You can look at the Kill Bill code to see for yourself. The implementation of the getLastEventBeforeDate method uses the ISO format
The text was updated successfully, but these errors were encountered: