How to implement the Plaid identity verification product in Laravel? I am confused about implementing this product. I've tried the github.com/TomorrowIdeas/plaid-sdk-php
package and successfully implemented the Investments product in Laravel. I want to implement an identity verification product in Laravel using a template from Plaid. Can someone explain how to implement the Plaid identity verification product in Laravel?
How to implement the Plaid identity verification product in Laravel?
110 Views Asked by AudioBubble At
2
There are 2 best solutions below
4

The PHP library for Plaid is a third party, unofficial client library, and as indicated in its README, it does not have support for Identity Verification. You have several options for using Plaid Identity Verification with PHP:
Do not use a Plaid client library and instead make direct POST calls to the Plaid API using the HTTP library of your choice.
Submit a PR to the PHP client library to add support for the Identity Verification endpoints you will need to use in your integration.
Generate your own PHP client library using Plaid's OpenAPI specification and a tool such as OpenAPI Generator.
This issue has been solved using the Plaid SDK PHP and jQuery. Below is an example of the codes.
plaid.js
PlaidController.php
PlaidRepositoryInterface.php
PlaidRepository.php