Skip to content

Commit

Permalink
New client release: 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Engineering at Onfido committed Dec 21, 2017
1 parent 8d05403 commit 4d8c2bc
Show file tree
Hide file tree
Showing 63 changed files with 4,268 additions and 158 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
The Onfido API is used to submit background checking requests
The Onfido API is used to submit check requests.

This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 2.0.0
- Package version: 1.0.1
- Build date: 2017-03-21T18:07:56.582Z
- Package version: 1.1.0
- Build date: 2017-12-21T16:52:40.183Z
- Build package: class io.swagger.codegen.languages.PhpClientCodegen

## Requirements
Expand Down Expand Up @@ -110,22 +110,30 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**cancelReport**](docs/Api/DefaultApi.md#cancelreport) | **POST** /checks/{check_id}/reports/{report_id}/cancel | This endpoint is for cancelling individual paused reports.
*DefaultApi* | [**createApplicant**](docs/Api/DefaultApi.md#createapplicant) | **POST** /applicants | Create Applicant
*DefaultApi* | [**createCheck**](docs/Api/DefaultApi.md#createcheck) | **POST** /applicants/{applicant_id}/checks | Create a check
*DefaultApi* | [**createWebhook**](docs/Api/DefaultApi.md#createwebhook) | **POST** /webhooks | Create a webhook
*DefaultApi* | [**destroyApplicant**](docs/Api/DefaultApi.md#destroyapplicant) | **DELETE** /applicants/{applicant_id} | Delete Applicant
*DefaultApi* | [**downloadDocument**](docs/Api/DefaultApi.md#downloaddocument) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data
*DefaultApi* | [**downloadLivePhoto**](docs/Api/DefaultApi.md#downloadlivephoto) | **GET** /live_photos/{live_photo_id}/download | Download live photo
*DefaultApi* | [**findAddresses**](docs/Api/DefaultApi.md#findaddresses) | **GET** /addresses/pick | Search for addresses by postcode
*DefaultApi* | [**findApplicant**](docs/Api/DefaultApi.md#findapplicant) | **GET** /applicants/{applicant_id} | Retrieve Applicant
*DefaultApi* | [**findCheck**](docs/Api/DefaultApi.md#findcheck) | **GET** /applicants/{applicant_id}/checks/{check_id} | Retrieve a Check
*DefaultApi* | [**findDocument**](docs/Api/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.
*DefaultApi* | [**findLivePhoto**](docs/Api/DefaultApi.md#findlivephoto) | **GET** /live_photos/{live_photo_id} | Retrieve live photo
*DefaultApi* | [**findReport**](docs/Api/DefaultApi.md#findreport) | **GET** /checks/{check_id}/reports/{report_id} | A single report can be retrieved using this endpoint with the corresponding unique identifier.
*DefaultApi* | [**findReportTypeGroup**](docs/Api/DefaultApi.md#findreporttypegroup) | **GET** /report_type_groups/{report_type_group_id} | Retrieve single report type group object
*DefaultApi* | [**findWebhook**](docs/Api/DefaultApi.md#findwebhook) | **GET** /webhooks/{webhook_id} | Retrieve a Webhook
*DefaultApi* | [**listApplicants**](docs/Api/DefaultApi.md#listapplicants) | **GET** /applicants | List Applicants
*DefaultApi* | [**listChecks**](docs/Api/DefaultApi.md#listchecks) | **GET** /applicants/{applicant_id}/checks | Retrieve Checks
*DefaultApi* | [**listDocuments**](docs/Api/DefaultApi.md#listdocuments) | **GET** /applicants/{applicant_id}/documents | List documents
*DefaultApi* | [**listLivePhotos**](docs/Api/DefaultApi.md#listlivephotos) | **GET** /live_photos | List live photos
*DefaultApi* | [**listReportTypeGroups**](docs/Api/DefaultApi.md#listreporttypegroups) | **GET** /report_type_groups | Retrieve all report type groups
*DefaultApi* | [**listReports**](docs/Api/DefaultApi.md#listreports) | **GET** /checks/{check_id}/reports | All the reports belonging to a particular check can be listed from this endpoint.
*DefaultApi* | [**listWebhooks**](docs/Api/DefaultApi.md#listwebhooks) | **GET** /webhooks | List webhooks
*DefaultApi* | [**resumeCheck**](docs/Api/DefaultApi.md#resumecheck) | **POST** /checks/{check_id}/resume | Resume a Check
*DefaultApi* | [**resumeReport**](docs/Api/DefaultApi.md#resumereport) | **POST** /checks/{check_id}/reports/{report_id}/resume | This endpoint is for resuming individual paused reports.
*DefaultApi* | [**updateApplicant**](docs/Api/DefaultApi.md#updateapplicant) | **PUT** /applicants/{applicant_id} | Update Applicant
*DefaultApi* | [**uploadDocument**](docs/Api/DefaultApi.md#uploaddocument) | **POST** /applicants/{applicant_id}/documents | Upload a document
*DefaultApi* | [**uploadLivePhoto**](docs/Api/DefaultApi.md#uploadlivephoto) | **POST** /live_photos | Upload live photo


## Documentation For Models
Expand All @@ -139,10 +147,16 @@ Class | Method | HTTP request | Description
- [Document](docs/Model/Document.md)
- [DocumentsList](docs/Model/DocumentsList.md)
- [Error](docs/Model/Error.md)
- [GenericAddress](docs/Model/GenericAddress.md)
- [GenericAddressesList](docs/Model/GenericAddressesList.md)
- [IdNumber](docs/Model/IdNumber.md)
- [LivePhoto](docs/Model/LivePhoto.md)
- [LivePhotosList](docs/Model/LivePhotosList.md)
- [Report](docs/Model/Report.md)
- [ReportType](docs/Model/ReportType.md)
- [ReportTypeGroup](docs/Model/ReportTypeGroup.md)
- [ReportTypeGroupsList](docs/Model/ReportTypeGroupsList.md)
- [ReportTypeOption](docs/Model/ReportTypeOption.md)
- [ReportsList](docs/Model/ReportsList.md)
- [Webhook](docs/Model/Webhook.md)
- [WebhooksList](docs/Model/WebhooksList.md)
2 changes: 1 addition & 1 deletion autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Onfido API
*
* The Onfido API is used to submit background checking requests
* The Onfido API is used to submit check requests.
*
* OpenAPI spec version: 2.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onfido/api-php-client",
"version": "1.0.1",
"version": "1.1.0",
"description": "",
"keywords": [
"swagger",
Expand Down
Loading

0 comments on commit 4d8c2bc

Please sign in to comment.