/api/administrator/subscriptions/payment-methods-count (GET)
await global.api.administrator.subscriptions.PaymentMethodsCount.get(req) Located in Stripe Subscriptions module API
Returns integer
Exceptions
These exceptions are thrown (NodeJS) or returned as JSON (HTTP) if you provide incorrect data or do not meet the requirements:
Exception | Circumstances |
---|
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) => {
return subscriptions.StorageList.count(`${req.appid}/paymentMethods`, req.stripeKey)
}
}
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')
describe('/api/administrator/subscriptions/payment-methods-count', () => {
describe('returns', () => {
it('integer', async () => {
const administrator = await TestHelper.createOwner()
const user = await TestHelper.createUser()
await TestHelper.createCustomer(user, {
email: user.profile.contactEmail,
description: user.profile.firstName,
country: 'US'
})
for (let i = 0, len = global.pageSize + 1; i < len; i++) {
await TestHelper.createPaymentMethod(user, {
cvc: '111',
number: '4111111111111111',
exp_month: '1',
exp_year: (new Date().getFullYear() + 1).toString().substring(2),
name: user.profile.firstName + ' ' + user.profile.lastName,
address_line1: '285 Fulton St',
address_line2: 'Apt 893',
address_city: 'New York',
address_state: 'NY',
address_zip: '90120',
address_country: 'US',
default: 'true'
})
}
const req = TestHelper.createRequest('/api/administrator/subscriptions/payment-methods-count')
req.account = administrator.account
req.session = administrator.session
req.filename = __filename
req.saveResponse = true
const result = await req.get()
assert.strictEqual(result, global.pageSize + 1)
})
})
})