Skip to main content

Vendor Risk Templates

Vendor assessments and third-party risk documents. Structurify provides 2 templates for this category.

Available Templates

TemplateIDDescription
Vendor Risk Assessmentptpl_vendor_riskComprehensive third-party vendor risk assessment from questionnaires, certificat
Security Questionnaire (SIG/CAIQ)ptpl_security_questionnaireExtract and analyze responses from security questionnaires like SIG Lite, SIG Co

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Vendor Risk Project",
template_id="ptpl_vendor_risk"
)

# Upload and extract
doc = client.documents.upload(
project_id=project["id"],
file_path="document.pdf"
)
job = client.extraction.run(project_id=project["id"])
result = client.extraction.wait_for_completion(job["id"])

Try It