Appearance
Workflows
Workflows are how most checks are initiated.
We have big plans for workflows in the future including them being customizable and event driven. But for now we only have basic workflows available that run single checks.
Available workflows
Workflow name | Checks initiated |
---|---|
kyc | KYC |
fin-vul | Financial vulnerability |
Execute workflow
Executes a workflow on the desired case.
Endpoint | api/workflows/execute |
---|---|
Method | POST |
Content type | application/json |
Request
A request just requires a case Id and a workflow name.
json
{
"caseId":"123",
"workFlowName":"kyc"
}