invoicePaymentStatusChecker
$0.01/invocation
Checks payment status of invoices against payments to identify mismatches, and calculates relevant late fees. Late fees are based on 1% daily interest of amount payable after the due date
invoicePaymentStatusChecker(
)
=
loading...
API


python

Ruby
>_

Google Sheets
Chat
Email
To use this function in your Ruby application:
1. Install it:
gem install func_live
2. Copy over this snippet:
FuncLive.token = 'FUNC_TOKEN'
FuncLive.("invoicePaymentStatusChecker", {
"invoices": [
{
"id": 1,
"amount": 2000,
"dueDate": "2024-06-01"
}
],
"payments": [
{
"invoiceId": 1,
"amount": 2000,
"date": "2024-06-04"
}
]
})
3. Make sure to replace FUNC_TOKEN with an actual token from tokens.wakeflow.io
For more information: https://rubygems.org/gems/func_live