# Retrieve account's paymentmethods

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/account/payment_methods:
    get:
      summary: Retrieve account's paymentmethods
      deprecated: false
      description: ''
      tags:
        - API Reference/Accounts
      parameters:
        - name: currency
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: product_type
          in: query
          description: ''
          required: true
          schema:
            type: string
            enum:
              - payment
              - subscription
            x-apifox:
              enumDescriptions:
                payment: ''
                subscription: ''
        - name: Accept
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  support_payment_method:
                    type: array
                    items:
                      type: string
                x-apifox-orders:
                  - support_payment_method
          headers: {}
          x-apifox-name: Success
      security:
        - basic: []
      x-apifox-folder: API Reference/Accounts
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/1296482/apis/api-243830007-run
components:
  schemas: {}
  securitySchemes:
    basic:
      type: http
      scheme: basic
servers:
  - url: https://apitest.wooshpay.com
    description: 官网测试
security:
  - basic: []

```
