PAYMENTS
SIMPLIFIED


Offer all the payment features your
customers want with a fast integration
that limits your PCI scope.

GET STARTED

API Base URLs

  • Production Server

    For processing live transactions

    https://api.payjunction.com

  • Test Server

    For development

    https://api.payjunctionlabs.com

Most Commonly Referred to Articles

POST /invoices/{invoiceId}/send-reminder

Send a reminder email to the customer. You can only send a reminder for an Invoice with status OPEN.

Example Request

curl -X POST https://api.payjunction.com/invoices/e321790e-c030-4501-aa99-09e35158c1a6/send-reminder \
  -u "login:password" \
  -H "Accept:application/json" \
  -H "X-PJ-Application-Key: YOUR_PRODUCTION_APP_KEY"

Example Response - Error

{
  "errors" : [ {
    "message" : "Unable to send reminder because invoice is not open."
  } ]
}
Please Note: that the Response for a successful Reminder request doesn't have any Body, it's just a 204 (No Content) in the header.