void |
ReportManager.cancel(String reportId) |
Cancels single paused reports.
|
void |
TaskManager.complete(String workflowRunId,
String taskId,
TaskData.Request request) |
|
Applicant |
ApplicantManager.create(Applicant.Request request) |
Creates a single applicant.
|
Check |
CheckManager.create(Check.Request request) |
Initiates a check for an applicant, which can contain one or more reports.
|
Webhook |
WebhookManager.create(Webhook.Request request) |
Registers a webhook.
|
WorkflowRun |
WorkflowRunManager.create(WorkflowRun.Request request) |
Create a workflow run.
|
void |
ApplicantManager.delete(String applicantId) |
Deletes a single applicant.
|
void |
WebhookManager.delete(String webhookId) |
Deletes a webhook.
|
FileDownload |
CheckManager.download(String checkId) |
Downloads a check.
|
FileDownload |
DocumentManager.download(String documentId) |
Downloads specific documents belonging to an applicant.
|
FileDownload |
LivePhotoManager.download(String livePhotoId) |
Downloads a live photo.
|
FileDownload |
LiveVideoManager.download(String liveVideoId) |
Downloads a live video.
|
FileDownload |
MotionCaptureManager.download(String motionCaptureId) |
Downloads a motion capture.
|
FileDownload |
LiveVideoManager.downloadFrame(String liveVideoId) |
Instead of the whole video, a single frame can be downloaded.
|
FileDownload |
MotionCaptureManager.downloadFrame(String motionCaptureId) |
Instead of the whole motion capture, a single frame can be downloaded.
|
FileDownload |
WorkflowRunManager.evidence(String workflowRunId) |
Downloads a Workflow Run signed evidence file.
|
Applicant |
ApplicantManager.find(String applicantId) |
Retrieves a single applicant.
|
Check |
CheckManager.find(String checkId) |
Retrieves a single check.
|
Document |
DocumentManager.find(String documentId) |
Retrieves a single document.
|
LivePhoto |
LivePhotoManager.find(String livePhotoId) |
Retrieves a single live photo.
|
LiveVideo |
LiveVideoManager.find(String liveVideoId) |
Retrieves a single live video.
|
MotionCapture |
MotionCaptureManager.find(String motionCaptureId) |
Retrieves a single motion capture.
|
Report |
ReportManager.find(String reportId) |
Retrieves a single report.
|
Task |
TaskManager.find(String workflowRunId,
String taskId) |
|
Webhook |
WebhookManager.find(String webhookId) |
Retrieves a single webhook.
|
WorkflowRun |
WorkflowRunManager.find(String workflowRunId) |
Retrieves a single WorkflowRun.
|
String |
SdkTokenManager.generate(SdkToken.Request request) |
Generate an SDK token.
|
List<Applicant> |
ApplicantManager.list(int page,
int perPage,
boolean includedDeleted) |
Lists all applicants you’ve created, sorted by creation date in descending order.
|
List<Check> |
CheckManager.list(String applicantId) |
Returns all checks for an applicant.
|
List<Document> |
DocumentManager.list(String applicantId) |
Lists all documents belonging to an applicant.
|
List<LivePhoto> |
LivePhotoManager.list(String applicantId) |
Lists the live photos that belong to an applicant.
|
List<LiveVideo> |
LiveVideoManager.list(String applicantId) |
Lists all the live videos that belong to an applicant.
|
List<MotionCapture> |
MotionCaptureManager.list(String applicantId) |
Lists all the live videos that belong to an applicant.
|
List<Report> |
ReportManager.list(String checkId) |
Lists all reports belonging to a particular check.
|
List<TaskBase> |
TaskManager.list(String workflowRunId) |
|
List<Webhook> |
WebhookManager.list() |
Lists all webhooks you’ve created.
|
Extraction |
ExtractionManager.perform(String document_id) |
Initiates an extraction for a document.
|
List<Address> |
AddressManager.pick(String postcode) |
Performs a search for addresses by postcode (UK only).
|
void |
ApplicantManager.restore(String applicantId) |
Restores a single applicant scheduled for deletion.
|
void |
CheckManager.resume(String checkId) |
Resumes a paused check.
|
void |
ReportManager.resume(String reportId) |
Resumes a single paused report.
|
Applicant |
ApplicantManager.update(String applicantId,
Applicant.Request request) |
Updates an applicant’s information.
|
Webhook |
WebhookManager.update(String webhookId,
Webhook.Request request) |
Edits a webhook.
|
Document |
DocumentManager.upload(InputStream inputStream,
String fileName,
Document.Request request) |
Uploads a document as part of a multipart request.
|
LivePhoto |
LivePhotoManager.upload(InputStream inputStream,
String fileName,
LivePhoto.Request request) |
Uploads a live photo as part of a multipart request.
|