-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add webhooks for invoices #81
Comments
|
{
"signature": "sig",
"invoice": {
"lago_id": "id",
"incremental_id": "incremental_id",
"customer": {
"lago_id": "lago_id",
"customer_id": "customer_id",
"metadata": "metadata",
...
},
"subscription": {
"lago_id": "lago_id",
"anniversary_date": "anniversary_date",
"status": "status"
"plan": {
"code": "code",
"name": "name"
}
}
"from_date": "from_date",
"to_date": "to_date",
"issuing_date": "issuing_date",
"amount_cents": 100,
"amount_currency": "EUR",
"vat_amount_cents": 20,
"vat_amount_currency": "EUR",
"total_amount_cents": 100,
"total_amount_currency": "EUR",
"fees": [
{ // subscription fee
"item": {
"type": "subscription",
"code": "code",
"name": "name"
},
"amount_cents": 100,
"amount_currency": "EUR",
"vat_amount_cents": 20,
"vat_amount_currency": "EUR"
},
{ // charge fee
"item": {
"type": "billable_metric",
"code": "code",
"name": "name"
}
"amount_cents": 100,
"amount_currency": "EUR",
"vat_amount_cents": 20,
"vat_amount_currency": "EUR"
}
]
}
} |
jdenquin
added
API
Related to the public API
Feature
Add a new feature to the app
Invoice
Related to Invoices
🔔 Webhook
Related to Webhooks
and removed
enhancement
New feature or request
labels
Apr 25, 2022
|
Product Issue : https://github.com/getlago/lago-product/issues/5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We must add the webhook logic that will be triggered when the invoice is processed
The text was updated successfully, but these errors were encountered: