Skip to main content

Procurement Templates

Purchase orders, vendor agreements, and procurement documents. Structurify provides 6 templates for this category.

Available Templates

TemplateIDDescription
Request for Proposal (RFP)ptpl_rfp_documentExtract key requirements from RFP documents
Request for Quotation (RFQ)ptpl_rfq_documentExtract data from Request for Quotation documents
Vendor Performance Scorecardptpl_vendor_scorecardExtract data from vendor/supplier performance evaluations
Supplier Qualification Questionnaireptpl_supplier_questionnaireExtract data from supplier qualification/onboarding questionnaires
Master Purchase Agreementptpl_purchase_agreementExtract key terms from master purchasing agreements and supply agreements
Vendor Master Data Formptpl_vendor_masterExtract vendor/supplier onboarding data for ERP and procurement system setup

Example Usage

from structurify import Structurify

client = Structurify(api_key="sk_live_xxx")

# Create project with template
project = client.projects.create(
name="My Procurement Project",
template_id="ptpl_rfp_document"
)

# 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