Articheck API Integration
Webhook Format
{
"external_id": "string",
"status": "ApplicantStatus",
"message": "string or null"
}Applicant Status Values
ApplicantStatus(StrEnum):
INIT = 'init'
PENDING = 'pending'
APPROVED = 'approved'
REJECTED = 'rejected'Security Verification
import hmac
import hashlib
hmac.new(
key=str(webhook_secret_key).encode(),
msg=data.encode(),
digestmod=hashlib.sha256,
).hexdigest()Last updated