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 '{
"to": [
"jsmith@example.com"
],
"cc": [
"jsmith@example.com"
]
}'
{
"success": true
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
curl --request POST \
--url https://app.flowglad.com/api/v1/invoices/{id}/send-reminder \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"to": [
"jsmith@example.com"
],
"cc": [
"jsmith@example.com"
]
}'
{
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.