You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2021. It is now read-only.
*DefaultApi* | [**download_document**](docs/DefaultApi.md#download_document) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data
104
104
*DefaultApi* | [**download_live_photo**](docs/DefaultApi.md#download_live_photo) | **GET** /live_photos/{live_photo_id}/download | Download live photo
105
+
*DefaultApi* | [**download_live_video**](docs/DefaultApi.md#download_live_video) | **GET** /live_videos/{live_video_id}/download | Download live video
105
106
*DefaultApi* | [**find_addresses**](docs/DefaultApi.md#find_addresses) | **GET** /addresses/pick | Search for addresses by postcode
*DefaultApi* | [**find_check**](docs/DefaultApi.md#find_check) | **GET** /applicants/{applicant_id}/checks/{check_id} | Retrieve a Check
108
109
*DefaultApi* | [**find_document**](docs/DefaultApi.md#find_document) | **GET** /applicants/{applicant_id}/documents/{document_id} | A single document can be retrieved by calling this endpoint with the document’s unique identifier.
109
110
*DefaultApi* | [**find_live_photo**](docs/DefaultApi.md#find_live_photo) | **GET** /live_photos/{live_photo_id} | Retrieve live photo
111
+
*DefaultApi* | [**find_live_video**](docs/DefaultApi.md#find_live_video) | **GET** /live_videos/{live_video_id} | Retrieve live video
110
112
*DefaultApi* | [**find_report**](docs/DefaultApi.md#find_report) | **GET** /checks/{check_id}/reports/{report_id} | A single report can be retrieved using this endpoint with the corresponding unique identifier.
111
113
*DefaultApi* | [**find_report_type_group**](docs/DefaultApi.md#find_report_type_group) | **GET** /report_type_groups/{report_type_group_id} | Retrieve single report type group object
112
114
*DefaultApi* | [**find_webhook**](docs/DefaultApi.md#find_webhook) | **GET** /webhooks/{webhook_id} | Retrieve a Webhook
113
115
*DefaultApi* | [**list_applicants**](docs/DefaultApi.md#list_applicants) | **GET** /applicants | List Applicants
*DefaultApi* | [**list_documents**](docs/DefaultApi.md#list_documents) | **GET** /applicants/{applicant_id}/documents | List documents
116
118
*DefaultApi* | [**list_live_photos**](docs/DefaultApi.md#list_live_photos) | **GET** /live_photos | List live photos
119
+
*DefaultApi* | [**list_live_videos**](docs/DefaultApi.md#list_live_videos) | **GET** /live_videos | List live videos
117
120
*DefaultApi* | [**list_report_type_groups**](docs/DefaultApi.md#list_report_type_groups) | **GET** /report_type_groups | Retrieve all report type groups
118
121
*DefaultApi* | [**list_reports**](docs/DefaultApi.md#list_reports) | **GET** /checks/{check_id}/reports | All the reports belonging to a particular check can be listed from this endpoint.
119
122
*DefaultApi* | [**list_webhooks**](docs/DefaultApi.md#list_webhooks) | **GET** /webhooks | List webhooks
[**download_document**](DefaultApi.md#download_document) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data
13
13
[**download_live_photo**](DefaultApi.md#download_live_photo) | **GET** /live_photos/{live_photo_id}/download | Download live photo
14
+
[**download_live_video**](DefaultApi.md#download_live_video) | **GET** /live_videos/{live_video_id}/download | Download live video
14
15
[**find_addresses**](DefaultApi.md#find_addresses) | **GET** /addresses/pick | Search for addresses by postcode
[**find_check**](DefaultApi.md#find_check) | **GET** /applicants/{applicant_id}/checks/{check_id} | Retrieve a Check
17
18
[**find_document**](DefaultApi.md#find_document) | **GET** /applicants/{applicant_id}/documents/{document_id} | A single document can be retrieved by calling this endpoint with the document’s unique identifier.
18
19
[**find_live_photo**](DefaultApi.md#find_live_photo) | **GET** /live_photos/{live_photo_id} | Retrieve live photo
20
+
[**find_live_video**](DefaultApi.md#find_live_video) | **GET** /live_videos/{live_video_id} | Retrieve live video
19
21
[**find_report**](DefaultApi.md#find_report) | **GET** /checks/{check_id}/reports/{report_id} | A single report can be retrieved using this endpoint with the corresponding unique identifier.
20
22
[**find_report_type_group**](DefaultApi.md#find_report_type_group) | **GET** /report_type_groups/{report_type_group_id} | Retrieve single report type group object
21
23
[**find_webhook**](DefaultApi.md#find_webhook) | **GET** /webhooks/{webhook_id} | Retrieve a Webhook
22
24
[**list_applicants**](DefaultApi.md#list_applicants) | **GET** /applicants | List Applicants
[**list_documents**](DefaultApi.md#list_documents) | **GET** /applicants/{applicant_id}/documents | List documents
25
27
[**list_live_photos**](DefaultApi.md#list_live_photos) | **GET** /live_photos | List live photos
28
+
[**list_live_videos**](DefaultApi.md#list_live_videos) | **GET** /live_videos | List live videos
26
29
[**list_report_type_groups**](DefaultApi.md#list_report_type_groups) | **GET** /report_type_groups | Retrieve all report type groups
27
30
[**list_reports**](DefaultApi.md#list_reports) | **GET** /checks/{check_id}/reports | All the reports belonging to a particular check can be listed from this endpoint.
28
31
[**list_webhooks**](DefaultApi.md#list_webhooks) | **GET** /webhooks | List webhooks
@@ -397,6 +400,59 @@ Name | Type | Description | Notes
397
400
398
401
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
399
402
403
+
# **download_live_video**
404
+
> file download_live_video(live_video_id)
405
+
406
+
Download live video
407
+
408
+
Live videos are downloaded using this endpoint.
409
+
410
+
### Example
411
+
412
+
* Api Key Authentication (Token):
413
+
```python
414
+
from__future__import print_function
415
+
import time
416
+
import onfido
417
+
from onfido.rest import ApiException
418
+
from pprint import pprint
419
+
configuration = onfido.Configuration()
420
+
configuration.api_key['Authorization'] ='token='+'YOUR API TOKEN'
**live_video_id** | **str**| The live video’s unique identifier. |
440
+
441
+
### Return type
442
+
443
+
**file**
444
+
445
+
### Authorization
446
+
447
+
[Token](../README.md#Token)
448
+
449
+
### HTTP request headers
450
+
451
+
-**Content-Type**: Not defined
452
+
-**Accept**: */*, application/json
453
+
454
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
455
+
400
456
# **find_addresses**
401
457
> GenericAddressesList find_addresses(postcode)
402
458
@@ -656,6 +712,57 @@ Name | Type | Description | Notes
656
712
657
713
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
658
714
715
+
# **find_live_video**
716
+
> LiveVideo find_live_video(live_video_id)
717
+
718
+
Retrieve live video
719
+
720
+
### Example
721
+
722
+
* Api Key Authentication (Token):
723
+
```python
724
+
from__future__import print_function
725
+
import time
726
+
import onfido
727
+
from onfido.rest import ApiException
728
+
from pprint import pprint
729
+
configuration = onfido.Configuration()
730
+
configuration.api_key['Authorization'] ='token='+'YOUR API TOKEN'
**live_video_id** | **str**| The live video’s unique identifier. |
750
+
751
+
### Return type
752
+
753
+
[**LiveVideo**](LiveVideo.md)
754
+
755
+
### Authorization
756
+
757
+
[Token](../README.md#Token)
758
+
759
+
### HTTP request headers
760
+
761
+
-**Content-Type**: Not defined
762
+
-**Accept**: application/json
763
+
764
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
765
+
659
766
# **find_report**
660
767
> Report find_report(check_id, report_id)
661
768
@@ -1025,6 +1132,57 @@ Name | Type | Description | Notes
1025
1132
1026
1133
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
1027
1134
1135
+
# **list_live_videos**
1136
+
> LiveVideosList list_live_videos(applicant_id)
1137
+
1138
+
List live videos
1139
+
1140
+
### Example
1141
+
1142
+
* Api Key Authentication (Token):
1143
+
```python
1144
+
from__future__import print_function
1145
+
import time
1146
+
import onfido
1147
+
from onfido.rest import ApiException
1148
+
from pprint import pprint
1149
+
configuration = onfido.Configuration()
1150
+
configuration.api_key['Authorization'] ='token='+'YOUR API TOKEN'
**applicant_id** | **str**| The id of the applicant the live videos belong to. |
1170
+
1171
+
### Return type
1172
+
1173
+
[**LiveVideosList**](LiveVideosList.md)
1174
+
1175
+
### Authorization
1176
+
1177
+
[Token](../README.md#Token)
1178
+
1179
+
### HTTP request headers
1180
+
1181
+
-**Content-Type**: Not defined
1182
+
-**Accept**: application/json
1183
+
1184
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
0 commit comments