Skip to main content
GET
/
payment-method
List Payment Methods
curl --request GET \
  --url https://api.satsuma.ai/payment-method \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "card": {
        "brand": "<string>",
        "last4": "<string>",
        "exp_month": 123,
        "exp_year": 123
      }
    }
  ],
  "messages": [
    {
      "context": "<string>",
      "level": "Information",
      "text": "<string>",
      "data": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication

Query Parameters

merchant_id
string
required

Merchant identifier

Response

200 - application/json

OK

data
object[]
messages
object[]