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
}
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
}
Successful response
The response is of type object
.
Was this page helpful?