Skip to main content
GET
/
me
/
paymentMethods
List my payment methods
curl --request GET \
  --url https://api.guile.app/me/paymentMethods \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "type": "card",
      "isDefault": false,
      "card": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "network": "visa",
        "last4": "<string>",
        "expirationMonth": "<string>",
        "expirationYear": "<string>"
      },
      "digitalWallet": {
        "provider": "apple"
      }
    }
  ],
  "count": 1
}

Response

Ok. The operation succeeded.

A list response for resources. This response contains the full result set after any filters are applied.

items
object[]
required
count
integer<int16>
required
Required range: x >= 0