List all fee schedules
Get all fee schedules
GET
https://<PayEngine-host>/api/fee-schedules
Field Name
Type
Description
Required?
data
array
Fee schedules
Required
data[i].id
string
Fee schedule ID
Required
data[i].name
string
Fee schedule name
Required
data[i].description
string
Description
Required
data[i].is_default
string
Indicate that fee schedule is assigned to new onboarding application
Required
data[i].created_at
string
Timestamp when fee schedule was created
Required
data[i].updated_at
string
Timestamp when fee schedule was updated
Required
{
"data": [
{
"id": "aba76907-2a1a-41cf-8501-5cd4ba1ff400",
"name": "CUSTOMER_01: VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
"description": "VS/MC/DS 2.9% + $.30; AMEX 3.4% + $.30; ACH 1% + 0.18; MONTHLY $20; PCI $79",
"is_default": true,
"created_at": "2022-02-10T04:50:39.817Z",
"updated_at": "2022-02-10T04:50:39.817Z"
},
{
"id": "756a4758-14d7-4474-86bb-267039bf3802",
"name": "INTERNAL_01: CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
"description": "CC interchange + 0.3% + $.20; ACH $0.20; MONTHLY $20; PCI $79; NO REV Share",
"is_default": false,
"created_at": "2022-02-10T04:50:39.817Z",
"updated_at": "2022-02-10T04:50:39.817Z"
}
]
}
curl --location --request GET 'http://<PayEngine-host>/api/fee-schedules' \
--header 'Authorization: Basic <YOUR_API_SECRET>'
Last updated