The official Ruby library for integrating with the Onfido API.
Refer to the documentation at https://documentation.onfido.com.
This version uses Onfido API v3.6. Refer to our API versioning guide for details of which client library versions use which versions of the API.
gem onfido, '~> 4.6.0'
Configure with your API token, region and optional timeout (default value is 30):
require onfido
Onfido.configure do |config|
config.api_token = ENV["ONFIDO_API_TOKEN"]
config.region = config.region[:EU]
config.timeout = 30
end
onfido_api = Onfido::DefaultApi.new
All resources share the same interface when making API calls. Use .create
to create a resource, .find
to find one, and .all
to fetch all resources.
applicant = onfido_api.create_applicant(
first_name: 'Test',
last_name: 'Applicant'
)
Documentation and code examples can be found at https://documentation.onfido.com.
All errors are wrapped by ApiError
coming from FaradayException:
Connection timed out
is raised in case ofFaraday::TimeoutError
Connection failed
is raised in case ofFaraday::ConnectionFailed
All errors provide the code
, response_headers
, and response_body
of the error.
def create_applicant
onfido_api.create_applicant(params)
rescue Onfido::ApiError => e
e.message # => 'Unprocessable entity'
e.response_body # => { error: { type: "validation_error", message: "", fields: { "email": [ "invalid format" ] } } }
e.code # => '422'
end
Webhook events payload needs to be verified before it can be accessed. Verifying webhook payloads is crucial for security reasons, as it ensures that the payloads are indeed from Onfido and have not been tampered with. The library allows you to easily decode the payload and verify its signature before returning it as an object for user convenience:
require 'onfido/webhook_event_verifier'
def webhook_verifier()
verifier = Onfido::WebhookEventVerifier.new(ENV["ONFIDO_WEBHOOK_SECRET_TOKEN"])
signature = "a0...760e"
event = verifier.read_payload('{"payload":{"r...3"}}', signature)
rescue Onfido::OnfidoInvalidSignatureError => e
e.type
e.fields
e.response_code
end
This library is automatically generated using OpenAPI Generator (version: 7.9.0); therefore, all contributions (except test files) should target the Onfido OpenAPI specification repository instead of this repository. Please follow the contribution guidelines provided in the OpenAPI specification repository.
For contributions to the tests instead, please follow the steps below:
- Fork the repository
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes
- Commit your changes (
git commit -am 'Add detailed description of the feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Versioning helps manage changes and ensures compatibility across different versions of the library.
Semantic Versioning policy is used for library versioning, following the guidelines and limitations outlined below:
- MAJOR versions (x.0.0) may:
- target a new API version
- include non-backward compatible change
- MINOR versions (0.x.0) may:
- add a new functionality, non-mandatory parameter or property
- deprecate an old functionality
- include non-backward compatible change to a functionality which is:
- labelled as alpha or beta
- completely broken and not usable
- PATCH version (0.0.x) will:
- fix a bug
- include backward compatible changes only
Additional documentation and code examples can be found at https://documentation.onfido.com.
Should you encounter any technical issues during integration, please contact Onfido's Customer Support team via the Customer Experience Portal which also includes support documentation.