> ## 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.

# List Payment Methods

Returns the payment methods on file for a team. Requires a verified email and is rate limited to 30 requests per minute.

<ParamField path="team" type="string" required>
  The UUID of the team.
</ParamField>

## Response

<ResponseField name="default_method" type="string">
  The ID of the default payment method, or `null` if none is set.
</ResponseField>

<ResponseField name="methods" type="array">
  List of payment method objects.

  <Expandable title="method properties">
    <ResponseField name="id" type="string">
      The Stripe payment method ID.
    </ResponseField>

    <ResponseField name="type" type="string">
      The payment method type. One of `card` or `sepa_debit`.
    </ResponseField>

    <ResponseField name="is_default" type="boolean">
      Whether this is the default payment method.
    </ResponseField>

    <ResponseField name="card" type="object">
      Card details, or `null` if the type is not `card`.

      <Expandable title="card properties">
        <ResponseField name="brand" type="string">
          The card brand (e.g., `visa`, `mastercard`).
        </ResponseField>

        <ResponseField name="last4" type="string">
          The last four digits of the card number.
        </ResponseField>

        <ResponseField name="exp_month" type="integer">
          The card expiration month.
        </ResponseField>

        <ResponseField name="exp_year" type="integer">
          The card expiration year.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="sepa_debit" type="object">
      SEPA debit details, or `null` if the type is not `sepa_debit`.

      <Expandable title="sepa_debit properties">
        <ResponseField name="bank_code" type="string">
          The bank code.
        </ResponseField>

        <ResponseField name="last4" type="string">
          The last four digits of the IBAN.
        </ResponseField>

        <ResponseField name="country" type="string">
          The two-letter ISO country code of the bank account.
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>
