Stripe Subscriptions module API explorer

/api/administrator/subscriptions/payment-methods (GET)

await global.api.administrator.subscriptions.PaymentMethods.get(req)

Returns array

Exceptions

These exceptions are thrown (NodeJS) or returned as JSON (HTTP) if you provide incorrect data or do not meet the requirements:

Exception Circumstances

Receives

API routes may receive parameters from the URL and POST supporting simple and multipart:

Field Value Required Type
all boolean optional URL
limit integer optional URL
offset integer optional URL

NodeJS source (edit on github)

If you see a problem with the source submit a pull request on Github.

const subscriptions = require('../../../../../index.js')

module.exports = {
  get: async (req) => {
    req.query = req.query || {}
    let paymentmethodids
    if (req.query.all) {
      paymentmethodids = await subscriptions.StorageList.listAll(`${req.appid}/paymentMethods`)
    } else {
      const offset = req.query.offset ? parseInt(req.query.offset, 10) : 0
      const limit = req.query.limit ? parseInt(req.query.limit, 10) : global.pageSize
      paymentmethodids = await subscriptions.StorageList.list(`${req.appid}/paymentMethods`, offset, limit)
    }
    if (!paymentmethodids || !paymentmethodids.length) {
      return null
    }
    const items = []
    for (const paymentmethodid of paymentmethodids) {
      req.query.paymentmethodid = paymentmethodid
      const paymentMethod = await global.api.administrator.subscriptions.PaymentMethod.get(req)
      items.push(paymentMethod)
    }
    return items
  }
}

Test source (edit on github)

Tests perform real HTTP requests against a running Dashboard server.

/* eslint-env mocha */
const assert = require('assert')
const TestHelper = require('../../../../../test-helper.js')
const TestStripeAccounts = require('../../../../../test-stripe-accounts.js')
const DashboardTestHelper = require('@userdashboard/dashboard/test-helper.js')

describe('/api/administrator/subscriptions/payment-methods', function () {
  this.timeout(60 * 60 * 1000)
  const cachedResponses = {}
  const cachedPaymentMethods = []
  before(async () => {
    await DashboardTestHelper.setupBeforeEach()
    await TestHelper.setupBeforeEach()
    const administrator = await TestHelper.createOwner()
    for (let i = 0, len = global.pageSize + 2; i < len; i++) {
      const user = await TestStripeAccounts.createUserWithPaymentMethod()
      cachedPaymentMethods.unshift(user.paymentMethod.id)
    }
    const req1 = TestHelper.createRequest('/api/administrator/subscriptions/payment-methods?offset=1')
    req1.account = administrator.account
    req1.session = administrator.session
    cachedResponses.offset = await req1.get()
    const req2 = TestHelper.createRequest('/api/administrator/subscriptions/payment-methods?limit=1')
    req2.account = administrator.account
    req2.session = administrator.session
    cachedResponses.limit = await req2.get()
    const req3 = TestHelper.createRequest('/api/administrator/subscriptions/payment-methods?all=true')
    req3.account = administrator.account
    req3.session = administrator.session
    cachedResponses.all = await req3.get()
    const req4 = TestHelper.createRequest('/api/administrator/subscriptions/payment-methods')
    req4.account = administrator.account
    req4.session = administrator.session
    req4.filename = __filename
    req4.saveResponse = true
    cachedResponses.returns = await req4.get()
    global.pageSize = 3
    cachedResponses.pageSize = await req4.get()
  })
  describe('receives', () => {
    it('optional querystring offset (integer)', async () => {
      const offset = 1
      const paymentMethodsNow = cachedResponses.offset
      for (let i = 0, len = global.pageSize; i < len; i++) {
        assert.strictEqual(paymentMethodsNow[i].id, cachedPaymentMethods[offset + i])
      }
    })

    it('optional querystring limit (integer)', async () => {
      const limit = 1
      const paymentMethodsNow = cachedResponses.limit
      assert.strictEqual(paymentMethodsNow.length, limit)
    })

    it('optional querystring all (boolean)', async () => {
      const paymentMethodsNow = cachedResponses.all
      assert.strictEqual(paymentMethodsNow.length, cachedPaymentMethods.length)
    })
  })

  describe('returns', () => {
    it('array', async () => {
      const paymentMethodsNow = cachedResponses.returns
      assert.strictEqual(paymentMethodsNow.length, global.pageSize)
    })
  })

  describe('configuration', () => {
    it('environment PAGE_SIZE', async () => {
      global.pageSize = 3
      const paymentMethodsNow = cachedResponses.pageSize
      assert.strictEqual(paymentMethodsNow.length, global.pageSize)
    })
  })
})