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 "YOUR_USER:YOUR_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
}
]
}