@deshartman/payclient
v1.0.8
Published
Simple Twilio Agent Assisted Payment library to capture credit cards for tokens
Downloads
3
Readme
Twilio PayClient library
Twilio PayClient is a proof of concept implementation of Twilio's Pay service, offering PCI DSS payment capture on Twilio voice calls. Visit the official site for more details: https://www.twilio.com/pay
Installation
via NPM
npm install --save @deshartman/payclient
Using this method, you can use payclient.js like so:
import PayClient from "@deshartman/payclient";
const payClient = new PayClient(merchantURL, identity);
payclient.attachPay(callSid);
- "identity" is the Agent identity used for tracking purposes.
- "merchantURL" - See Server Setup
- "callSid" - See Methods
Usage
Methods
The client has multiple methods that can be used to drive a user interface. Some examples are given below:
payClient.startCapture();
payClient.cancelCapture();
payClient.submitCapture();
payClient.resetCard();
payClient.resetSecurityCode();
payClient.resetDate();
payclient.updateCallSid(callSid);
Events
The client has multiple events that fire and can be used to drive a User interface. Some examples are given below:
payClient.on('callConnected', (callSid) => {
payClient.updateCallSid(callSid);
});
payClient.on('cardUpdate', (data) => {
this.paymentCardNumber = data.paymentCardNumber;
this.paymentCardType = data.paymentCardType
this.securityCode = data.securityCode
this.expirationDate = data.expirationDate
this.paymentToken = data.paymentToken
};
payClient.on('capturing', () => { });
payClient.on('capturingCard', () => { });
payClient.on('capturingSecurityCode', () => { });
payClient.on('capturingDate', () => { });
payClient.on('captureComplete', () => { });
payClient.on('cardReset', () => { });
payClient.on('securityCodeReset', () => { });
payClient.on('dateReset', () => { });
payClient.on('cancelledCapture', () => { });
payClient.on('submitComplete', () => { });
- Make a call via Twilio and extract the PSTN side call SID. This is provided to payClient as the call SID. This can be done at initiation or after the fact by updating the call Sid
payclient.updateCallSid(callSid);
- On the PSTN calling handset (customer) now enter the card details using the keypad:
- Enter a test credit card e.g. 4444 3333 2222 1111
- enter a cvc e.g. 123
- enter a future exp. date e.g. 1225
Note: If a mistake was made entering digits, call the resetXXX() methods to reset the entry.
- When all data has been entered, "Submit" the transaction and wait for a returned token in the 'cardUpdate' event paymentToken.
Server Setup
To use the library, you need to provide config back to the client via a server url, where the configuration can be pulled from in the below format.
const config = {
twilioAccountSid: context.ACCOUNT_SID,
twilioApiKey: context.API_KEY,
twilioApiSecret: context.API_SECRET,
functionsURL: 'https://' + context.DOMAIN_NAME, // The Twilio Functions URL. Server where "paySyncUpdate" is deployed (See server below)
payConnector: context.PAY_CONNECTOR, // The name of the Twilio Pay connector configured
paySyncServiceSid: context.PAY_SYNC_SERVICE_SID, // Sync ServiceSid. All maps will be created
captureOrder: [ // example order of keywords.
"payment-card-number",
"security-code",
"expiration-date",
],
currency: 'AUD', // USD is default
tokenType: 'reusable', // one-time || reusable
};
This can be done with any server, or for convenience, deploy the server using twilio Functions, pasting the code below into Functions and setting the Environment variables.
Server: Using Twilio Functions
Create an API Key/secret to use with the services. Update the server "agent-pay-server/.env" with details.
Create a Twilio Sync Service and update PAY_SYNC_SERVICE_SID in "agent-pay-server/.env"
Create a new Pay connector and note the name of the connector. Update PAY_CONNECTOR in "agent-pay-server/.env"
Deploy the Server side with "twilio serverless:deploy". Use the Functions URL for the Merchant Server URL in PayClient.