Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.33 KB

README.md

File metadata and controls

50 lines (35 loc) · 1.33 KB

Onfido

Elixir wrapper of the Onfido API. Fork of https://github.com/PiggyPot/onfido updated for v3.

Installation

def deps do
  [
    {:onfido_v3, github: "piratestudios/onfido_v3", tag: "0.1.1"}
  ]
end
  1. Add configuration to your app:
config :onfido_v3,
  api_base: "https://api.onfido.com/v3",
  api_token: "<your-api-token>"

Documentation

Core Resources

Applicants
Documents
Checks
Reports
Webhooks

Other Resources

Address Picker
SDK Token Generation
Street Level Code

You can read the docs at hex.pm

Development Setup

If you are making changes to this codebase and want to test your code, you will need to copy the sample secret file.

cp config/secret.sample.exs config/secret.exs

Then add your relevant Onfido access details here.