Skip to main content
POST
/
api
/
checks
Create Check
curl --request POST \
  --url https://api.example.com/api/checks/ \
  --header 'Content-Type: application/json' \
  --cookie sessionid= \
  --data '
{
  "case_id": 123,
  "check_type": "PEP",
  "input_details": "<unknown>",
  "document_ids": [
    123
  ],
  "delete_after": 123
}
'
{
"case_id": 123,
"check_type": "PEP",
"input_details": {
"person_name": "Mustafa Nüvit Özkan",
"match_type": "Exact name match",
"institution_type": "International Representatives",
"position": "Honorary Consul",
"country": "Turkey",
"nationality": "Norway",
"source": "1. Turkey Foreign Diplomatic Missions - Norway",
"source_url": "https://cd.mfa.gov.tr/mission/mission-list?clickedId=3"
}
}

Authorizations

sessionid
string
cookie
required

Body

Write serializer for Check creation.

case_id
integer
required

ID of the case for this check

check_type
  • PEP - Pep
  • SANCTION - Sanction
  • BLACKLIST - Blacklist
  • ADVERSE_MEDIA - Adverse Media
  • IDV - IDV
  • WEB_PRESENCE - Web Presence
  • UBO_RESOLUTION - UBO Resolution
  • THREE_MONTHS_BANK_STATEMENT - Three Months Bank Statement
  • INCORPORATION_DOC - Incorporation Document
  • PROOF_OF_ADDRESS - Proof of Address
  • PROOF_OF_FUNDS - Proof of Funds
  • SIGNATURE_AUTH - Signature Authorization
  • FINANCIAL_STATEMENTS - Financial Statements
  • UNDERWRITING - Underwriting
  • TRANSACTION_MONITORING - Transaction Monitoring
Available options:
PEP,
SANCTION,
BLACKLIST,
ADVERSE_MEDIA,
IDV,
WEB_PRESENCE,
UBO_RESOLUTION,
THREE_MONTHS_BANK_STATEMENT,
INCORPORATION_DOC,
PROOF_OF_ADDRESS,
PROOF_OF_FUNDS,
SIGNATURE_AUTH,
FINANCIAL_STATEMENTS,
UNDERWRITING,
TRANSACTION_MONITORING
input_details
any | null

Flexible JSON format. No customer details may be present here.

document_ids
integer[]

List of document IDs to link to this check

delete_after
integer

Number of days until deletion. Max 365. For immediate deletion, use 0.

Response

201 - application/json

Read-only serializer for Check with related objects.

id
integer
required
case
object
required

Nested case serializer for Check responses.

risk_score
number<double> | null
required

Risk score from 0.0 to 1.0, typically used for automated actions.

title
string | null
required

Short title generated by the check. For a watchlist hit, this typically corresponds to the name of the hit indvidual.

note
string | null
required

1-2 paragraph case note for audit purposes, Markdown format

reasoning
string | null
required

Detailed reasoning steps, in Markdown. More comprehensive than the note.

outcome
required

The agent's decision.

  • ACCEPTED - Accepted
  • REJECTED - Rejected
  • PENDING - Pending
Available options:
ACCEPTED,
REJECTED,
PENDING
status
enum<string>
required
  • PENDING - Pending
  • PROCESSING - Processing
  • COMPLETED - Completed
  • ERROR - Error
Available options:
PENDING,
PROCESSING,
COMPLETED,
ERROR
created_at
string<date-time>
required
updated_at
string<date-time>
required
input_details
any | null

Flexible JSON format. For example, for a sanctions hit, this would include the name, date of birth, etc of the watchlist individual. Absolutely no customer details may be present here.

check_type
  • PEP - Pep
  • SANCTION - Sanction
  • BLACKLIST - Blacklist
  • ADVERSE_MEDIA - Adverse Media
  • IDV - IDV
  • WEB_PRESENCE - Web Presence
  • UBO_RESOLUTION - UBO Resolution
  • THREE_MONTHS_BANK_STATEMENT - Three Months Bank Statement
  • INCORPORATION_DOC - Incorporation Document
  • PROOF_OF_ADDRESS - Proof of Address
  • PROOF_OF_FUNDS - Proof of Funds
  • SIGNATURE_AUTH - Signature Authorization
  • FINANCIAL_STATEMENTS - Financial Statements
  • UNDERWRITING - Underwriting
  • TRANSACTION_MONITORING - Transaction Monitoring
Available options:
PEP,
SANCTION,
BLACKLIST,
ADVERSE_MEDIA,
IDV,
WEB_PRESENCE,
UBO_RESOLUTION,
THREE_MONTHS_BANK_STATEMENT,
INCORPORATION_DOC,
PROOF_OF_ADDRESS,
PROOF_OF_FUNDS,
SIGNATURE_AUTH,
FINANCIAL_STATEMENTS,
UNDERWRITING,
TRANSACTION_MONITORING
delete_after
integer

Days until deletion.

Required range: -2147483648 <= x <= 2147483647