Skip to content
On this page

Fetch Payment Methods ​

Retrieve the available payment methods for your store.

Endpoint ​

json
https://api-stores.storeino.com/api/methods/search

Query Parameters ​

None

Example Response ​

json
{
  "results": [
    {
      "_id": "string",
      "name": "PayPal",
      "logo": "https://cdn.example.com/paypal.png",
      "isOnline": true,
      "isActive": true
    },
    {
      "_id": "string",
      "name": "Cash on Delivery",
      "logo": "https://cdn.example.com/cod.png",
      "isOnline": false,
      "isActive": true
    }
  ],
  "paginate": {
        "total": 2,
        "per_page": 20,
        "current_page": 1,
        "last_page": 1
    }
}

Released under the MIT License.