Skip to main content
This guide explains how to integrate the Paybyrd Card Collect widget.

Overview

Card Collect is a JavaScript plugin that lets you process credit card payments without handling card data directly, so your integration does not require PCI compliance. The widget provides secure, customizable fields where the cardholder enters their card details. The widget converts those details into a temporary token you can use with any Paybyrd API that requires card data.

Installation

Install the package:
or
Then import the module into your project:
For usage in the browser please visit github, download dist/cardCollect-web.js and include it in your HTML file.

Quick Start

Designate the HTML elements where your fields will render, then initialize the library.
or for web
You can pass the following options when initializing the library: Finally, you can create fields and configure the submit handler.
You should have at least one field with the name card_number and one with card_exp. These are mandatory. The response is a JSON object that will contain the TokenId. These tokens are different from tokenization API tokens. Card Collect tokens are short-lived and are discarded after use.
With the TokenId, you can call any Paybyrd API that requires card data. Inside the Card node, instead of sending the raw card data, you will send the TokenId as shown in the sample below:

Adding fields

Mandatory fields

You must include at minimum:
  • card_number (type: 'card-number')
  • card_exp (type: 'card-expiration-date')

Field properties

Supported validations

Styling

Submitting

Response

Using the token in a payment

Pass tokenId in place of raw card fields:

Supported card brands

Visa, Mastercard, Amex, Maestro, Discover, Diners Club, JCB, UnionPay, Elo, and others.

Advanced: Smart CVC

Link the CVC field to the card number field for brand-specific CVC length validation:

Advanced: Data serializers

Use serializers to transform field data before submission: