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 1, 2021. It is now read-only.
*Onfido.DefaultApi* | [**downloadDocument**](docs/DefaultApi.md#downloadDocument) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data
136
137
*Onfido.DefaultApi* | [**downloadLivePhoto**](docs/DefaultApi.md#downloadLivePhoto) | **GET** /live_photos/{live_photo_id}/download | Download live photo
137
138
*Onfido.DefaultApi* | [**downloadLiveVideo**](docs/DefaultApi.md#downloadLiveVideo) | **GET** /live_videos/{live_video_id}/download | Download live video
139
+
*Onfido.DefaultApi* | [**editWebhook**](docs/DefaultApi.md#editWebhook) | **PUT** /webhooks/{webhook_id} | Edit a webhook
138
140
*Onfido.DefaultApi* | [**findAddresses**](docs/DefaultApi.md#findAddresses) | **GET** /addresses/pick | Search for addresses by postcode
[**downloadDocument**](DefaultApi.md#downloadDocument) | **GET** /applicants/{applicant_id}/documents/{document_id}/download | Download a documents raw data
13
14
[**downloadLivePhoto**](DefaultApi.md#downloadLivePhoto) | **GET** /live_photos/{live_photo_id}/download | Download live photo
14
15
[**downloadLiveVideo**](DefaultApi.md#downloadLiveVideo) | **GET** /live_videos/{live_video_id}/download | Download live video
16
+
[**editWebhook**](DefaultApi.md#editWebhook) | **PUT** /webhooks/{webhook_id} | Edit a webhook
15
17
[**findAddresses**](DefaultApi.md#findAddresses) | **GET** /addresses/pick | Search for addresses by postcode
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
310
+
*/
311
+
this.deleteWebhook=function(webhook_id){
312
+
returnthis.deleteWebhookWithHttpInfo(webhook_id)
313
+
.then(function(response_and_data){
314
+
returnresponse_and_data.data;
315
+
});
316
+
}
317
+
318
+
268
319
/**
269
320
* Delete Applicant
270
321
* @param {String} applicant_id
@@ -481,6 +532,64 @@
481
532
}
482
533
483
534
535
+
/**
536
+
* Edit a webhook
537
+
* @param {String} webhook_id
538
+
* @param {module:model/Webhook} Webhook
539
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Webhook} and HTTP response
0 commit comments