---
title: "List Payment Methods"
method: GET
path: "/v1/billing/payment_methods"
tags: ["Billing"]
---

# List Payment Methods

`GET /v1/billing/payment_methods`

List all payment methods present on the account

## Query parameters

- `page` integer — Page of results to include (default = 1)
- `per_page` integer — How many results to include in each page (default = 10)
- `include_token` boolean — Include the token used at the payment gateway in the response
- `active` boolean — Include only an active payment method

## Response `200`

OK

- BillingPaymentMethodsResponse
  - `success` boolean — whether the request succeeded
  - `errors` string[]
  - `messages` string[], nullable
  - `metadata` object
    - `page` integer — Page number of the results
    - `page_size` integer — Number of results per page
    - `total` integer — Total number of results
    - `sort` string — Sorting criteria
    - `direction` 'asc' | 'desc' — Sorting direction
  - `result` BillingPaymentMethod[]
    - `id` integer, required — ID of the payment method
    - `type` 'Credit Card' | 'PayPal', required
    - `active` boolean, required — The active payment method is the one that will be used to pay any automated payments
    - `description` string, required — Optional description of the card
    - `address` BillingAddress — Address associated with a credit card or billing contact
      - `id` integer — Billing address identifier
      - `first_name` string — First name of the billing contact
      - `last_name` string — Last name of the billing contact
      - `address_line_1` string — First Address line of the billing contact
      - `address_line_2` string — Second Address line of the billing contact
      - `company_name` string — Company name of the billing contact
      - `email` string — Email address of the billing contact
      - `city` string — City of the billing contact
      - `state` string — State / Province of the billing contact
      - `country` string — Country Code of the billing contact
      - `postal_code` string — Postal code of the billing contact
      - `telephone` string — Telephone number of the billing contact
      - `receive_invoice_emails` boolean — If this email address should receive invoice related emails
    - `address_id` integer — ID of the billing address used for this payment method
    - `card_last_four` string — Last 4 digits of the payment method (if it is a credit card)
    - `card_type` string — Used payment card network
    - `expiry_date` string — Expiration month and year of the payment method (if it is a credit card)
    - `last_updated` string — Date the payment method was last updated
    - `gateway_token` string — If requested, the token used to pay at the payment gateway

## Other responses

- `400` — Bad Request
- `401` — Authentication failed
- `403` — Not authorized to access endpoint
- `405` — Invalid input
- `412` — Precondition failed
- `500` — Internal error

---

[API](https://skmtc.net/rocket/apis/rocket-net-api.md) · [All operations](https://skmtc.net/rocket/apis/rocket-net-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rocket/rocket-net-api/versions/db0dcbbc5764/schema)
