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

GET /customers/{customerId}/notes

This API endpoint uses pagination.

To ensure all query results are received make sure to read our Pagination article.

Get a list of notes for a customer.

Example Response

{
      "results": [
            {
                  "noteId": 11, 
                  "uri": "https://api.payjunction.com/customers/10040/notes/11", 
                  "note": "This is a third note!", 
                  "created": "2013-08-26T21:37:23Z", 
                  "lastModified": "2013-08-26T21:37:23Z", 
                  "user": {
                        "firstName": "Sean", 
                        "lastName": "Ford"
                  }
            }, 
            {
                  "noteId": 10, 
                  "uri": "https://api.payjunction.com/customers/10040/notes/10", 
                  "note": "This is also a note!", 
                  "created": "2013-08-26T20:37:17Z", 
                  "lastModified": "2013-08-26T20:37:17Z", 
                  "user": {
                        "firstName": "Sean", 
                        "lastName": "Ford"
                  }
            }, 
            {
                  "noteId": 9, 
                  "uri": "https://api.payjunction.com/customers/10040/notes/9", 
                  "note": "This is a note.", 
                  "created": "2013-08-26T19:37:10Z", 
                  "lastModified": "2013-08-26T19:37:10Z", 
                  "user": {
                        "firstName": "Sean", 
                        "lastName": "Ford"
                  }
            }
      ]
}