Skip to main content
GET
/
v3
/
teams
/
{team}
/
billing
/
payment-methods
List Payment Methods
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams/{team}/billing/payment-methods \
  --header 'Authorization: Bearer <token>'
{
  "default_method": "<string>",
  "methods": [
    {
      "id": "<string>",
      "type": "<string>",
      "is_default": true,
      "card": {
        "brand": "<string>",
        "last4": "<string>",
        "exp_month": 123,
        "exp_year": 123
      },
      "sepa_debit": {
        "bank_code": "<string>",
        "last4": "<string>",
        "country": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the payment methods on file for a team.
team
string
required
The UUID of the team.

Response

default_method
string
The ID of the default payment method, or null if none is set.
methods
array
List of payment method objects.