- Publishes an invoice
POST {{baseURL}}/pay-int-api/invoices/publish
This endpoint publishes an invoice.
See Also:
To create an invoice, see POST /pay-int-api/invoices.
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 submit an invoice for processing, see POST /pay-int-api/invoices/{invoiceId}/submit.
The request containing the details for publishing the invoice.
Specifies the identifier of the invoice to publish.
Example: 0919d58c-9b0c-4d1e-2f3a-4b5c6d7e8f14
Indicates a line item's price can be force-overridden when publishing.
If true, a line item's unitPrice can override its catalog price even if the merchant's invoice settings would otherwise block it.
If false, a line item's unitPrice can only override its catalog price when the merchant's invoice settings allow it.
Example: true
Specifies the date (in an ISO 8601 date only format) the invoice is due.
Examples: 2026-08-31
Specifies an identifier for the credit card payment processor handling a card transaction.
Example: 78723ff2-d47e-460b-b838-d602bdf0e1bc
Specifies an identifier for the automated clearing house (ACH) payment processor handling a transaction.
Example: 9925a0b0-eb18-4d74-8967-7e0cf6af0729
Indicates additional notes or comments.
Example: Extension permitted for 30 days.
Specifies the shipping amount (in USD).
Example: 129.99
Specifies the tax percentage.
Example: 8.50 (as 8.50%)
Specifies the fees percentage.
Example: 10.25 (as 10.25%)
Specifies the discount percentage.
Example: 1.5 (as 1.5%)
Indicates the merchant’s stored contact information record used on invoices and payment flows.
Example: bdf4b5c6-7d8e-4f9a-0b1c-2d3e4f5a6b92
Specifies the customer identifier.
This is used when saving the payment method.
If this value is provided, the payment method is saved to the specified customer.
If this value is not provided, a new customer record is created.
Example: fd9198a4-eb6f-4620-9603-4f4638289d
Specifies faster processing is allowed for the invoice's ACH payment.
If true, faster processing is allowed.
If false, faster processing is not allowed.
Example: true
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-int-api/invoices/publish
- Sandbox environmenthttps://sandbox.api.flute.com/pay-int-api/invoices/publish
- Production environmenthttps://api.flute.com/pay-int-api/invoices/publish
curl -i -X POST \
https://developer.flute.com/_mock/api-reference/pay-int-api/invoices/publish \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-version: 1.0' \
-d '{
"id": "0919d58c-9b0c-4d1e-2f3a-4b5c6d7e8f14",
"canPriceBeForceOverrided": true,
"dueDate": "2026-08-31",
"cardPaymentProcessorId": "78723ff2-d47e-460b-b838-d602bdf0e1bc",
"achPaymentProcessorId": "9925a0b0-eb18-4d74-8967-7e0cf6af0729",
"additionalNotes": "Extension permitted for 30 days.",
"shippingAmount": 129.99,
"taxPercentage": 8.5,
"feesPercentage": 10.25,
"discountPercentage": 1.5,
"merchantContactInfoId": "bdf4b5c6-7d8e-4f9a-0b1c-2d3e4f5a6b92",
"customerId": "fd9198a4-eb6f-4620-9603-4f4638289d",
"achAllowFasterProcessing": true,
"customer": {
"firstName": "Alexandro",
"lastName": "Peppared",
"companyName": "Peppared Street Cafe",
"email": "peppared@example.com",
"mobilePhoneNumber": "+14155552309",
"isMobileNumberSmsNotificationsEnabled": true,
"useBillingAsShippingAddress": true,
"billingAddress": {
"line1": "21 E. Main Street",
"line2": "Apt. Block 6",
"city": "Chicago",
"zip": "60612",
"countryId": 1,
"stateId": 1,
"stateName": "Illinois"
},
"shippingAddress": {
"line1": "21 E. Main Street",
"line2": "Apt. Block 6",
"city": "Chicago",
"zip": "60612",
"countryId": 1,
"stateId": 1,
"stateName": "Illinois"
}
},
"lineItems": [
{
"productName": "RollerMouse Wireless Mouse",
"unitTypeId": 1,
"unitPrice": 18.99,
"id": "d0f6d7e8-9f0a-4b1c-2d3e-4f5a6b7c8d14",
"lineItemId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"description": "RollerMouse Design Collection, Limited Edition Wireless Mouse",
"sku": "24474771",
"quantity": 10,
"discountPercentage": 1.5,
"totalAmount": 3219.45
}
]
}'{ "id": "9be2f3a4-5b6c-4d7e-8f9a-0b1c2d3e4f70" }