card.js

  1. import axios from 'axios';
  2. import debug from 'debug';
  3. import {defaultHeaders} from './http';
  4. const log = debug('starling:card-service');
  5. /**
  6. * Service to interact with a customer card
  7. */
  8. class Card {
  9. /**
  10. * Creates an instance of the client's card
  11. * @param {Object} options - configuration parameters
  12. */
  13. constructor (options) {
  14. this.options = options;
  15. }
  16. /**
  17. * Retrieves a customer's card
  18. * @param {string} accessToken - the oauth bearer token.
  19. * @return {Promise} - the http request promise
  20. */
  21. getCard (accessToken) {
  22. const url = `${this.options.apiUrl}/api/v1/cards`;
  23. log(`GET ${url}`);
  24. return axios({
  25. method: 'GET',
  26. url,
  27. headers: defaultHeaders(accessToken)
  28. });
  29. }
  30. }
  31. module.exports = Card;