- Marks an invoice as paid
Lists a collection of invoices
Creates an invoice
Retrieves an invoice by ID
Updates a specific invoice
Deletes an invoice
Submits an invoice for processing
Submits an ACH invoice for processing
Retrieves calculations for an invoice
Publishes an invoice
Cancels an invoice
Sends an invoice notification by SMS
Sends an invoice notification by email
Downloads an invoice
Marks an invoice as paid
PUT {{baseURL}}/pay-int-api/invoices/{{invoiceId}}/mark-as-paid
This endpoint marks an invoice as paid.
Only invoices in published (Due, Past Due) status and not paid can be marked as paid.
Care must be taken to complete all the fields with the existing information.
See Also:
To retrieve an invoice by ID, see GET /pay-int-api/invoices/{invoiceId}.
To cancel an invoice, see PUT /pay-int-api/invoices/{invoiceId}/cancel.
To retrieve calculations for an invoice, see GET /pay-int-api/invoices/{invoiceId}/calculations.
To list invoices, see GET /pay-int-api/invoices.
Security
Bearer
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-int-api/invoices/{invoiceId}/mark-as-paid
- Sandbox environmenthttps://sandbox.api.flute.com/pay-int-api/invoices/{invoiceId}/mark-as-paid
- Production environmenthttps://api.flute.com/pay-int-api/invoices/{invoiceId}/mark-as-paid
curl -i -X PUT \
https://developer.flute.com/_mock/api-reference/pay-int-api/invoices/9be2f3a4-5b6c-4d7e-8f9a-0b1c2d3e4f70/mark-as-paid \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-version: 1.0' \
-d '{
"paymentMethodTypeId": 2
}'