AVAILABLE

Vendor Risk

Certificate Expiry Check

Read-only expiry-window and customer-verification checks. It does not validate authenticity or coverage.

CONTRACT

Predictable for agents. Legible for reviewers.

REST
POST /v1/certificates/expiry-checks
MCP tool
check_certificate_expiry
Inputs
Vendor reference, certificates with expiry dates, customer verification flags, and optional warning window.
Returns
CLEAR, REVIEW_REQUIRED, or BLOCKED with one evidence item per certificate.
Latency
Synchronous
Usage unit
Control check

AGENT-READABLE EXCEPTIONS

CERTIFICATE_EXPIRY_MISSINGCERTIFICATE_EXPIREDCERTIFICATE_EXPIRINGCERTIFICATE_NOT_VERIFIED

EXAMPLE REQUEST

POST /v1/certificates/expiry-checks
Authorization: Bearer apc_...
Content-Type: application/json

{
  "vendor_reference": "acme",
  "certificates": [
    {
      "certificate_reference": "COI-1",
      "certificate_type": "Insurance",
      "expires_on": "2027-12-31",
      "verified_by_customer": true
    }
  ]
}

REPRESENTATIVE RESPONSE

{
  "product": "Certificate Expiry Check",
  "status": "COMPLETED",
  "decision": "CLEAR",
  "exceptions": [],
  "evidence": {
    "vendor_reference": "acme",
    "certificates": [
      {
        "certificate_reference": "COI-1",
        "expires_on": "2027-12-31",
        "verified_by_customer": true
      }
    ]
  },
  "next_action": "Retain customer verification controls."
}
Structured outputStatus, decision, exceptions, evidence, confidence, and next action where relevant.
Tenant-scopedOnly the caller's organization records are searched or returned.
Read-onlyNo accounting record, vendor bank account, or payment is changed.

Use Certificate Expiry Check through RapidAPI.

Choose a capped marketplace plan, copy the generated request, and route the structured result through your own authorized workflow.