Invoices
Send Reminder Email for an Invoice
Invoices
Send Reminder Email for an Invoice
POST
/
api
/
v1
/
invoices-id
/
send-reminder
curl --request POST \
--url https://app.flowglad.com/api/v1/invoices-id/send-reminder \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"invoiceId": "<string>",
"to": [
"jsmith@example.com"
],
"cc": [
"jsmith@example.com"
]
}'
{
"success": true
}
Authorizations
Response
200
application/json
Successful response
curl --request POST \
--url https://app.flowglad.com/api/v1/invoices-id/send-reminder \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"invoiceId": "<string>",
"to": [
"jsmith@example.com"
],
"cc": [
"jsmith@example.com"
]
}'
{
"success": true
}