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 /terminals *Pre-2018-06-01*

Get a list of Terminal Id's for an account.

A Terminal Id points to the specific merchant account terminal that the transaction will be processed on. For example: main location, second location, sales department, etc. Terminal Id's can also be found manually. Click Here for instructions to find the Terminal Id(s) for your account.

Example Request

curl -X GET -u "login:password" -H "Accept: application/json" -H "X-PJ-Application-Key: YOUR_PRODUCTION_APP_KEY" \
    "https://api.payjunctionlabs.com/terminals/"

Example Response

{
  "results": [
    {
      "terminalId": 10000,
      "nickname": "Credit Card Terminal",
      "type": "CARD",
      "enabled": true
    },
    {
      "terminalId": 10001,
      "nickname": "Credit Card Terminal Two three34",
      "type": "CARD",
      "enabled": true
    },
    {
      "terminalId": 10003,
      "nickname": "ACH Terminal",
      "type": "ACH",
      "enabled": true
    },
    {
      "terminalId": 10014,
      "nickname": "ACH/Check Terminal",
      "type": "ACH",
      "enabled": true
    },
    {
      "terminalId": 10024,
      "nickname": "Third Ach",
      "type": "ACH",
      "enabled": false
    },
    {
      "terminalId": 10025,
      "nickname": "ACH/Check Terminal",
      "type": "ACH",
      "enabled": false
    },
    {
      "terminalId": 10034,
      "nickname": "CCT",
      "type": "CARD",
      "enabled": false
    }
  ]
}