- Sends an invoice notification by SMS
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
Marks an invoice as paid
Sends an invoice notification by email
Downloads an invoice
Sends an invoice notifica...
POST {{baseURL}}/pay-int-api/invoices/{{invoiceId}}/send-published-sms-notification
This endpoint sends an invoice notification by SMS.
See Also:
To retrieve an invoice by ID, see GET /pay-int-api/invoices/{invoiceId}.
To send an invoice notification by email, see POST /pay-int-api/invoices/{invoiceId}/send-email-notification.
To publish an invoice, see POST /pay-int-api/invoices/publish.
Security
Bearer
The request containing the details for the SMS notification.
Indicates the SMS phone number.
Example: +14155552309
Example:"+14155552309"
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-int-api/invoices/{invoiceId}/send-published-sms-notification
- Sandbox environmenthttps://sandbox.api.flute.com/pay-int-api/invoices/{invoiceId}/send-published-sms-notification
- Production environmenthttps://api.flute.com/pay-int-api/invoices/{invoiceId}/send-published-sms-notification
curl -i -X POST \
https://developer.flute.com/_mock/api-reference/pay-int-api/invoices/9be2f3a4-5b6c-4d7e-8f9a-0b1c2d3e4f70/send-published-sms-notification \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-version: 1.0' \
-d '{
"phoneNumber": "+14155552309",
"customerConsent": true
}'