|
| 1 | +# org.openapitools.client - Kotlin client library for Onfido API |
| 2 | + |
| 3 | +## Requires |
| 4 | + |
| 5 | +* Kotlin 1.1.2 |
| 6 | +* Gradle 3.3 |
| 7 | + |
| 8 | +## Build |
| 9 | + |
| 10 | +First, create the gradle wrapper script: |
| 11 | + |
| 12 | +``` |
| 13 | +gradle wrapper |
| 14 | +``` |
| 15 | + |
| 16 | +Then, run: |
| 17 | + |
| 18 | +``` |
| 19 | +./gradlew check assemble |
| 20 | +``` |
| 21 | + |
| 22 | +This runs all tests and packages the library. |
| 23 | + |
| 24 | +## Features/Implementation Notes |
| 25 | + |
| 26 | +* Supports JSON inputs/outputs, File inputs, and Form inputs. |
| 27 | +* Supports collection formats for query parameters: csv, tsv, ssv, pipes. |
| 28 | +* Some Kotlin and Java types are fully qualified to avoid conflicts with types defined in OpenAPI definitions. |
| 29 | +* Implementation of ApiClient is intended to reduce method counts, specifically to benefit Android targets. |
| 30 | + |
| 31 | +<a name="documentation-for-api-endpoints"></a> |
| 32 | +## Documentation for API Endpoints |
| 33 | + |
| 34 | +All URIs are relative to *https://api.onfido.com/v2* |
| 35 | + |
| 36 | +Class | Method | HTTP request | Description |
| 37 | +------------ | ------------- | ------------- | ------------- |
| 38 | +*DefaultApi* | [**cancelReport**](docs/DefaultApi.md#cancelreport) | **POST** /checks/{check_id}/reports/{report_id}/cancel | This endpoint is for cancelling individual paused reports. |
| 39 | +*DefaultApi* | [**createApplicant**](docs/DefaultApi.md#createapplicant) | **POST** /applicants | Create Applicant |
| 40 | +*DefaultApi* | [**createCheck**](docs/DefaultApi.md#createcheck) | **POST** /applicants/{applicant_id}/checks | Create a check |
| 41 | +*DefaultApi* | [**createWebhook**](docs/DefaultApi.md#createwebhook) | **POST** /webhooks | Create a webhook |
| 42 | +*DefaultApi* | [**destroyApplicant**](docs/DefaultApi.md#destroyapplicant) | **DELETE** /applicants/{applicant_id} | Delete Applicant |
| 43 | +*DefaultApi* | [**downloadDocument**](docs/DefaultApi.md#downloaddocument) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data |
| 44 | +*DefaultApi* | [**downloadLivePhoto**](docs/DefaultApi.md#downloadlivephoto) | **GET** /live_photos/{live_photo_id}/download | Download live photo |
| 45 | +*DefaultApi* | [**downloadLiveVideo**](docs/DefaultApi.md#downloadlivevideo) | **GET** /live_videos/{live_video_id}/download | Download live video |
| 46 | +*DefaultApi* | [**findAddresses**](docs/DefaultApi.md#findaddresses) | **GET** /addresses/pick | Search for addresses by postcode |
| 47 | +*DefaultApi* | [**findApplicant**](docs/DefaultApi.md#findapplicant) | **GET** /applicants/{applicant_id} | Retrieve Applicant |
| 48 | +*DefaultApi* | [**findCheck**](docs/DefaultApi.md#findcheck) | **GET** /applicants/{applicant_id}/checks/{check_id} | Retrieve a Check |
| 49 | +*DefaultApi* | [**findDocument**](docs/DefaultApi.md#finddocument) | **GET** /applicants/{applicant_id}/documents/{document_id} | A single document can be retrieved by calling this endpoint with the document’s unique identifier. |
| 50 | +*DefaultApi* | [**findLivePhoto**](docs/DefaultApi.md#findlivephoto) | **GET** /live_photos/{live_photo_id} | Retrieve live photo |
| 51 | +*DefaultApi* | [**findLiveVideo**](docs/DefaultApi.md#findlivevideo) | **GET** /live_videos/{live_video_id} | Retrieve live video |
| 52 | +*DefaultApi* | [**findReport**](docs/DefaultApi.md#findreport) | **GET** /checks/{check_id}/reports/{report_id} | A single report can be retrieved using this endpoint with the corresponding unique identifier. |
| 53 | +*DefaultApi* | [**findReportTypeGroup**](docs/DefaultApi.md#findreporttypegroup) | **GET** /report_type_groups/{report_type_group_id} | Retrieve single report type group object |
| 54 | +*DefaultApi* | [**findWebhook**](docs/DefaultApi.md#findwebhook) | **GET** /webhooks/{webhook_id} | Retrieve a Webhook |
| 55 | +*DefaultApi* | [**listApplicants**](docs/DefaultApi.md#listapplicants) | **GET** /applicants | List Applicants |
| 56 | +*DefaultApi* | [**listChecks**](docs/DefaultApi.md#listchecks) | **GET** /applicants/{applicant_id}/checks | Retrieve Checks |
| 57 | +*DefaultApi* | [**listDocuments**](docs/DefaultApi.md#listdocuments) | **GET** /applicants/{applicant_id}/documents | List documents |
| 58 | +*DefaultApi* | [**listLivePhotos**](docs/DefaultApi.md#listlivephotos) | **GET** /live_photos | List live photos |
| 59 | +*DefaultApi* | [**listLiveVideos**](docs/DefaultApi.md#listlivevideos) | **GET** /live_videos | List live videos |
| 60 | +*DefaultApi* | [**listReportTypeGroups**](docs/DefaultApi.md#listreporttypegroups) | **GET** /report_type_groups | Retrieve all report type groups |
| 61 | +*DefaultApi* | [**listReports**](docs/DefaultApi.md#listreports) | **GET** /checks/{check_id}/reports | All the reports belonging to a particular check can be listed from this endpoint. |
| 62 | +*DefaultApi* | [**listWebhooks**](docs/DefaultApi.md#listwebhooks) | **GET** /webhooks | List webhooks |
| 63 | +*DefaultApi* | [**restoreApplicant**](docs/DefaultApi.md#restoreapplicant) | **POST** /applicants/{applicant_id}/restore | Restore Applicant |
| 64 | +*DefaultApi* | [**resumeCheck**](docs/DefaultApi.md#resumecheck) | **POST** /checks/{check_id}/resume | Resume a Check |
| 65 | +*DefaultApi* | [**resumeReport**](docs/DefaultApi.md#resumereport) | **POST** /checks/{check_id}/reports/{report_id}/resume | This endpoint is for resuming individual paused reports. |
| 66 | +*DefaultApi* | [**updateApplicant**](docs/DefaultApi.md#updateapplicant) | **PUT** /applicants/{applicant_id} | Update Applicant |
| 67 | +*DefaultApi* | [**uploadDocument**](docs/DefaultApi.md#uploaddocument) | **POST** /applicants/{applicant_id}/documents | Upload a document |
| 68 | +*DefaultApi* | [**uploadLivePhoto**](docs/DefaultApi.md#uploadlivephoto) | **POST** /live_photos | Upload live photo |
| 69 | + |
| 70 | + |
| 71 | +<a name="documentation-for-models"></a> |
| 72 | +## Documentation for Models |
| 73 | + |
| 74 | + - [org.openapitools.client.models.Address](docs/Address.md) |
| 75 | + - [org.openapitools.client.models.Applicant](docs/Applicant.md) |
| 76 | + - [org.openapitools.client.models.ApplicantsList](docs/ApplicantsList.md) |
| 77 | + - [org.openapitools.client.models.Check](docs/Check.md) |
| 78 | + - [org.openapitools.client.models.CheckCommon](docs/CheckCommon.md) |
| 79 | + - [org.openapitools.client.models.CheckWithReportIds](docs/CheckWithReportIds.md) |
| 80 | + - [org.openapitools.client.models.ChecksList](docs/ChecksList.md) |
| 81 | + - [org.openapitools.client.models.Document](docs/Document.md) |
| 82 | + - [org.openapitools.client.models.DocumentsList](docs/DocumentsList.md) |
| 83 | + - [org.openapitools.client.models.Error](docs/Error.md) |
| 84 | + - [org.openapitools.client.models.GenericAddress](docs/GenericAddress.md) |
| 85 | + - [org.openapitools.client.models.GenericAddressesList](docs/GenericAddressesList.md) |
| 86 | + - [org.openapitools.client.models.IdNumber](docs/IdNumber.md) |
| 87 | + - [org.openapitools.client.models.InlineObject](docs/InlineObject.md) |
| 88 | + - [org.openapitools.client.models.InlineObject1](docs/InlineObject1.md) |
| 89 | + - [org.openapitools.client.models.LivePhoto](docs/LivePhoto.md) |
| 90 | + - [org.openapitools.client.models.LivePhotosList](docs/LivePhotosList.md) |
| 91 | + - [org.openapitools.client.models.LiveVideo](docs/LiveVideo.md) |
| 92 | + - [org.openapitools.client.models.LiveVideosList](docs/LiveVideosList.md) |
| 93 | + - [org.openapitools.client.models.Report](docs/Report.md) |
| 94 | + - [org.openapitools.client.models.ReportDocument](docs/ReportDocument.md) |
| 95 | + - [org.openapitools.client.models.ReportOption](docs/ReportOption.md) |
| 96 | + - [org.openapitools.client.models.ReportType](docs/ReportType.md) |
| 97 | + - [org.openapitools.client.models.ReportTypeGroup](docs/ReportTypeGroup.md) |
| 98 | + - [org.openapitools.client.models.ReportTypeGroupsList](docs/ReportTypeGroupsList.md) |
| 99 | + - [org.openapitools.client.models.ReportsList](docs/ReportsList.md) |
| 100 | + - [org.openapitools.client.models.Webhook](docs/Webhook.md) |
| 101 | + - [org.openapitools.client.models.WebhooksList](docs/WebhooksList.md) |
| 102 | + |
| 103 | + |
| 104 | +<a name="documentation-for-authorization"></a> |
| 105 | +## Documentation for Authorization |
| 106 | + |
| 107 | +<a name="Token"></a> |
| 108 | +### Token |
| 109 | + |
| 110 | +- **Type**: API key |
| 111 | +- **API key parameter name**: Authorization |
| 112 | +- **Location**: HTTP header |
| 113 | + |
0 commit comments