π
π
π
π
PayEngine API Reference
Searchβ¦
Introduction
Authentication
Onboarding
Create a merchant
Update Merchant Details (Deprecated)
Update Merchant Details V2
Document attachment
Validate onboarding application
Submit for Review
Application section criteria
Retrieve Merchant Details
Merchant Application Signing
List all merchants
Add Merchant's Bank Account
Get bank auto fill
Get address auto fill
Device Management
List all devices
Get device information
Fee Schedules
List all fee schedules
Retrieve a fee schedule
Transactions
Credit Card Authorization
Credit Card Capture
Credit Card Sale
Device Sale
Cancel Device Sale
ACH Sale
Refund
Credit
Offline
Search Transactions
Batch Report
Batch Settlement Settings
Card Tokens
ACH Tokens
Testing
Error and Response Codes
Error codes
Transaction Response codes
Response codes from credit card networks
Address verification codes
Card holder verification codes
Card type codes
CVV verification codes
Commercial card codes
Authorization characteristics indicators
Universal cardholder authentication field
Mastercard purchase transaction type
ISO currency codes
ACH host response codes
ACH host transaction statuses
Webhooks
Create a webhook
Update webhook
Retrieve a webhook
List all webhooks
Delete a webhook
JS Client Library Properties & Styling
SecureFields JS
Onboarding Web-Component
Transactions Web-Component
Payouts Web-Component
Dashboard Web-Component
Powered By
GitBook
List all merchants
get
https://<PayEngine-host>
/api/merchant
Get merchants
Node.js
1
β
2
var
config
=
{
3
method
:
'get'
,
4
url
:
'http://<PayEngine-host>/api/merchant'
,
5
headers
:
{
6
'accept'
:
'application/json'
,
7
'Authorization'
:
'Basic {{YOUR_API_SECRET}}'
8
}
9
};
10
β
11
axios
(
config
)
12
.
then
(
function
(
response
)
{
13
console
.
log
(
JSON
.
stringify
(
response
.
data
));
14
})
15
.
catch
(
function
(
error
)
{
16
console
.
log
(
error
);
17
});
Copied!
Onboarding - Previous
Merchant Application Signing
Next - Onboarding
Add Merchant's Bank Account
Last modified
2mo ago
Copy link