notification
object that defines the subject of the reminder and other details.username:password
Authorization: Basic *****************
{
"subject": "Reminder: Payment due for the invoice #ABC-123",
"note": "Please pay before the due date to avoid incurring late payment charges which will be adjusted in the next bill generated.",
"send_to_recipient": true,
"additional_recipients": [
"recipient_cc1@example.com",
"recipient_cc2@example.com"
],
"send_to_invoicer": false
}
curl --location -g --request POST 'https://api-m.sandbox.paypal.com/v2/invoicing/invoices/{{invoice_id}}/remind' \
--header 'PayPal-Request-Id: ' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"subject": "Reminder: Payment due for the invoice #ABC-123",
"note": "Please pay before the due date to avoid incurring late payment charges which will be adjusted in the next bill generated.",
"send_to_recipient": true,
"additional_recipients": [
"recipient_cc1@example.com",
"recipient_cc2@example.com"
],
"send_to_invoicer": false
}'
{}