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

This API endpoint uses pagination.

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

Get a list of Smart Terminals for an 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/smartterminals/"

Example Response

{
  "results" : [ {
    "serialNumber" : "111111111111",
    "smartTerminalId" : "fa9f139d-a6e8-4693-9bab-a98904cf3bf9",
    "nickName" : "SmartTerminal 1",
    "created" : "2016-04-18T19:31:27Z"
  }, {
    "serialNumber" : "222222222222",
    "smartTerminalId" : "6d81de1e-d069-40eb-82bc-4f08a9a4b890",
    "nickName" : "SmartTerminal 2",
    "created" : "2016-01-12T19:45:21Z"
  }, {
    "serialNumber" : "333333333333",
    "smartTerminalId" : "947b8f01-05e9-464a-bf79-7807f0c6c588",
    "nickName" : "SmartTerminal 3",
    "created" : "2015-11-17T00:17:07Z"
  }, {
    "serialNumber" : "444444444444",
    "smartTerminalId" : "20ca5c55-4c6b-4f45-b656-3db7a088757c",
    "nickName" : "SmartTerminal 4",
    "created" : "2015-08-27T20:23:00Z"
  } ]
}