Payment Methods

Get Payment Methods

Retrieves the payment methods.

get/v1/shops/{shopId}/payment-methods

Response

current_pageinteger
first_page_urlstring
frominteger
last_pageinteger
last_page_urlstring
next_page_urlstring
pathstring
per_pageinteger
prev_page_urlstring
tointeger
totalinteger

Example response

{
  "current_page": 1,
  "data": [
    {
      "id": 1,
      "shop_id": 1,
      "type": "stripe",
      "name": "Stripe",
      "checkout_name": null,
      "icon_image_id": null,
      "percentage_fee": 0,
      "fixed_fee": 0,
      "min_amount": null,
      "max_amount": null,
      "currency_override": null,
      "hide_powered_by": false,
      "is_active": true,
      "order": 0,
      "created_at": "2026-08-28T18:23:02.000000Z",
      "updated_at": "2026-08-28T18:23:02.000000Z",
      "deleted_at": null,
      "icon_image_url": null,
      "icon_image": null
    },
    {
      "id": 2,
      "shop_id": 1,
      "type": "CUSTOMERBALANCE",
      "name": "Customer Balance",
      "checkout_name": null,
      "icon_image_id": null,
      "percentage_fee": 0,
      "fixed_fee": 0,
      "min_amount": null,
      "max_amount": null,
      "currency_override": null,
      "hide_powered_by": false,
      "is_active": true,
      "order": 0,
      "created_at": "2026-08-28T18:23:02.000000Z",
      "updated_at": "2026-08-28T18:23:02.000000Z",
      "deleted_at": null,
      "icon_image_url": null,
      "icon_image": null
    }
  ],
  "first_page_url": "http://api.sellauth.test/v1/shops/1/payment-methods?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "http://api.sellauth.test/v1/shops/1/payment-methods?page=1",
  "links": [
    {
      "url": null,
      "label": "« Previous",
      "active": false
    },
    {
      "url": "http://api.sellauth.test/v1/shops/1/payment-methods?page=1",
      "label": "1",
      "active": true
    },
    {
      "url": null,
      "label": "Next »",
      "active": false
    }
  ],
  "next_page_url": null,
  "path": "http://api.sellauth.test/v1/shops/1/payment-methods",
  "per_page": 100,
  "prev_page_url": null,
  "to": 2,
  "total": 2
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.