- Fakturan.nu API 2 /
- Payments /
- create
POST
/api/v2/invoices/:invoice_id/payments
Add payment
Params
-
paid_at
What date was the payment made?
Examples
- POST /api/v2/invoices/4/payments
- {
- "paid_at": "2021-01-25"
- }
- 201
- {
- "data": {
- "id": 1,
- "paid_at": "2021-01-25",
- "amount": "1250.0",
- "invoice_id": 4
- }
- }