{"id":21565854,"url":"https://github.com/prevailexcel/vue-identity-kyc","last_synced_at":"2026-01-25T08:33:41.886Z","repository":{"id":243365628,"uuid":"811869379","full_name":"PrevailExcel/vue-identity-kyc","owner":"PrevailExcel","description":"A Vue.js plugin for Prembly Identity Verification","archived":false,"fork":false,"pushed_at":"2024-06-07T13:23:45.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-09T18:45:47.541Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PrevailExcel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-07T13:21:20.000Z","updated_at":"2024-06-15T12:49:33.000Z","dependencies_parsed_at":"2024-06-08T11:32:19.863Z","dependency_job_id":"477b2c0d-1356-4919-8d89-5c913da09776","html_url":"https://github.com/PrevailExcel/vue-identity-kyc","commit_stats":null,"previous_names":["prevailexcel/vue-identity-kyc"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/PrevailExcel/vue-identity-kyc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrevailExcel%2Fvue-identity-kyc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrevailExcel%2Fvue-identity-kyc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrevailExcel%2Fvue-identity-kyc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrevailExcel%2Fvue-identity-kyc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PrevailExcel","download_url":"https://codeload.github.com/PrevailExcel/vue-identity-kyc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrevailExcel%2Fvue-identity-kyc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28749400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T08:31:04.260Z","status":"ssl_error","status_checked_at":"2026-01-25T08:30:28.859Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T10:22:09.036Z","updated_at":"2026-01-25T08:33:41.869Z","avatar_url":"https://github.com/PrevailExcel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prembly Identitypass VueJS SDK\n\u003e vue-identity-kyc\n\n[![NPM](https://img.shields.io/npm/v/vue-identity-kyc.svg)](https://www.npmjs.com/package/vue-identity-kyc) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n\nThe Prembly Identitypass VueJS SDK is a library that allows you to easily integrate verification services into your JS/TS app. The SDK is based on the Prembly Identitypass API, which provides a range of verification services, including data verification, identity verification, document verification, biometric verification, radar verification and other verification services.\n\n#### It has full TypeScript Support.\n\n\n\n## Install\n\n```bash\nnpm install --save vue-identity-kyc\n```\n\n## Usage\n\n```vue\n\u003cscript setup\u003e\nimport { useIdentityPayKYC } from 'vue-identity-kyc';\n\nconst config = {\n  first_name: \"test\",\n  last_name: \"test\",\n  email: \"prevailejimadu@myidentitypass.com\",\n  merchant_key: \"\u003cyour-key-here\u003e\",\n  user_ref: \"a unique ref for your user\",\n  is_test: true,  //set this to through for a test\n  config_id: \"\u003cconfiguration ID retrieve from your widget settings\u003e\", //optional\n  callback: (response) =\u003e console.log(response)\n}\n\nconst verifyWithIdentity = useIdentityPayKYC(config)\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n\n    \u003cbutton @click=\"verifyWithIdentity\"\u003eVerify Identity\u003c/button\u003e\n\n\u003c/template\u003e\n```\n\n## RESPONSES\n```js\nRESPONSES\n\n1. Failed response:\n         {\n          code: \"E01\",\n          message: \"Message goes here\",\n          status: \"failed\"\n      }\n      \n 2. Cancelled\n      {\n          code: \"E02\",\n          message: \"Verification Canceled\",\n          status: \"failed\"\n      } \n 3. Success\n        {\n          code: \"00\",\n          status: \"success\",\n          message: \"Verification Successful\",\n          data:{\n              //Verification data goes here\n              // kindly check official documentation for data structure for each channel\n              //https://developer.myidentitypass.com\n              },\n          channel:\"Channel goes here\", e.g BVN,NIN and many more\n\n      }\n ```      \n## Contributing\n\nPlease feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.\n\n## Thank You\n\nWhy not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or HackerNews? Spread the word!\n\nDon't forget to [follow me on twitter](https://twitter.com/EjimaduPrevail)!\nAlso check out my page on medium to catch articles and tutorials on Laravel [follow me on medium](https://medium.com/@prevailexcellent)!\n\nThanks!\nChimeremeze Prevail Ejimadu.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprevailexcel%2Fvue-identity-kyc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprevailexcel%2Fvue-identity-kyc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprevailexcel%2Fvue-identity-kyc/lists"}