@deshartman/payclient_functions
v3.0.1
Published
Simple Twilio Agent Assisted Payment library to capture credit cards for tokens using Twilio Functions and Segment
Downloads
3
Maintainers
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_functions
Usage
Using this method, you can use payclient like so:
import PayClient from "@deshartman/payclient_functions";
const payClient = new PayClient(functionsURL,
identity,
paymentConnector,
captureOrder,
currency,
tokenType,
writeKey);
// When ready to capture payments
payclient.attachPay(callSid);
// When done clean up using:
payclient.detachPay();
- "functionsURL" - The Twilio Functions URL where the call handlers are deployed. See Server Setup for suggested Functions option
- "identity" - is the Agent identity used for tracking purposes.
- "paymentConnector" - The name of the Twilio Pay connector configured.
- "captureOrder" - These are Merchant specific config, each Agent will use each time
- "currency" - The currency to use for the transaction. USD is default
- "tokenType" - The token type to use for the transaction one-time || reusable
- "writeKey" - OPTIONAL: The write key for Twilio Segment service, that when supplied will write events into a Segment Javascript source. Leave blank to ignore
- "callSid" - The callSID to attach Pay to. See Methods
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', () => { });
Calls & Payments
- 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 the middleware services and specifically a sync token based on a Sync service. These functions are provided as part of the AgentPay library https://github.com/deshartman/AgentPay/tree/master/agent-pay-server. This version uses Twilio Functions to host all the required middleware server functions the NPM will use.
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"
Deploy the Server side with "twilio serverless:deploy". Use the Functions base URL in the PayClient constructor.
Segment Setup
We have also strapped in Segment with this NPM to report on all events as they happen in the NPM. To set this up, sign up for a segment account at www.segment.com. NOTE: This is completely optional and will function without this config.
- Add a "Javascript website" Source Connector in Segment
- Copy the Write Key under settings and set VUE_APP_SEGMENT_WRITEKEY in the client side .env file.
- To stop logging, simply remove the key
Events will now be logged to Segment and can be processed.