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 /customers

Add a customer.

If you are using a restricted API User, please make sure the "View other user's transactions" permission is enabled.

Parameters

required name format description
  companyName Text, Max Length 64 Company name
  custom1 Text, Max Length 32 Custom field
  email Email (1), Max Length 128 Email
  identifier Text, Max Length 64 Identifier used by merchant to identify the customer
  firstName Text, Max Length 16 First name
  jobTitle Text, Max Length 32 Job Title
  lastName Text, Max Length 32 Last Name
  middleName Text, Max Length 32 Middle Name
  phone Phone Number, Max Length 24, Must contain at least 10 digits Phone
  phone2 Phone Number, Max Length 24, Must contain at least 10 digits Phone 2
  website Text, Max Length 128 Website

 

Example Response

{
      "customerId": 10079, 
      "uri": "https://api.payjunction.com/customers/10079", 
      "firstName": "John", 
      "lastName": "Keats", 
      "companyName": "PayJunction", 
      "email": "jkeats@payjunction.com", 
      "phone": "800-601-0230", 
      "phone2": "800-771-3821", 
      "jobTitle": "Poet", 
      "website": "https://www.payjunction.com", 
      "custom1": "custom-field", 
      "created": "2012-02-09T02:12:14Z", 
      "lastModified": "2012-02-09T02:12:14Z"
}