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

Authorization
string
header
required

Body

application/json
invoiceId
string
required
to
string[]
required
cc
string[]

Response

200
application/json
Successful response
success
boolean
required