Skip to main content
⭐️ If you love EverShop, give it a star on GitHub. Thanks!

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"
-H "Cookie: asid=<your admin cookie>"
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"
}
]
}
}