Skip to main content
POST
/
v1
/
verifyCacAndReport
curl -X POST https://api.vouchmark.com/v1/verifyCacAndReport \
  -H "Authorization: Bearer $TOKEN" \
  -F "companyId=cmp_aBcD..." \
  -F "cacert=@./cacert.pdf" \
  -F "cacReport=@./cac-report.pdf" \
  -F "memartDocument=@./memart.pdf"
{
  "success": true,
  "data": {
    "companyId": "cmp_aBcD...",
    "cacert_verified": true,
    "cacreport_verified": true,
    "memartVerified": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt

Use this file to discover all available pages before exploring further.

Cross-checks uploaded CAC documents against the live registry. The endpoint accepts up to three files; supply at least the certificate.

Form fields

companyId
string
required
cacert
file
required
CAC certificate PDF. ≤ 25 MB.
cacReport
file
CAC status report PDF.
memartDocument
file
MEMART PDF. Required to clear the full 45-point CAC bucket.
curl -X POST https://api.vouchmark.com/v1/verifyCacAndReport \
  -H "Authorization: Bearer $TOKEN" \
  -F "companyId=cmp_aBcD..." \
  -F "cacert=@./cacert.pdf" \
  -F "cacReport=@./cac-report.pdf" \
  -F "memartDocument=@./memart.pdf"
{
  "success": true,
  "data": {
    "companyId": "cmp_aBcD...",
    "cacert_verified": true,
    "cacreport_verified": true,
    "memartVerified": true
  }
}