Skip to main content

Payment Method API

Use the REST API to interact with EverShop payment methods.

Get available payment methods

Use this endpoint to get available payment methods.

Request Schema (application/json)
No request body required
GET/api/paymentMethods
curl
-H "Accept: application/json"
https://<your domain>/api/paymentMethods
Sample Of Response
{
"data": {
"methods": [
{
"code": "cod",
"name": "Cash On Delivery"
},
{
"code": "paypal",
"name": "Paypal"
},
{
"code": "stripe",
"name": "Credit Card"
}
]
}
}