Documentation Index
Fetch the complete documentation index at: https://vanta.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Before you begin
This guide is for Vanta admins managing data inside their own Vanta account. You’ll need:- A Manage Vanta API token.
- The token must have scopes
vanta-api.all:readandvanta-api.all:write. - The evidence file you want to attach (PDF, DOCX, JPG, PNG, or XLSX) saved locally.
Bulk-importing vendors from a procurement system? Run Step 1 in a loop, capture the returned
id, then run Step 2 once per supporting document.Create the vendor
Your terminal — Expected response (Copy the
POST /v1/vendors with the vendor metadata. Only name is required; everything else can be filled in later via PATCH /v1/vendors/{vendorId}.200) — the full vendor object, including the id you’ll need in Step 2:id — you’ll send it as the path parameter in the next step.Got a 401?
Got a 401?
Token is expired (one-hour lifetime), missing, or lacks
vanta-api.all:write. Mint a fresh one — see Authentication → Tokens expire after one hour.Setting category and custom risk attributes at the same time?
Setting category and custom risk attributes at the same time?
The API processes the request in this order: (1) the category is applied, (2) all attributes inherited from that category are wiped, (3) the explicit attributes you sent are applied on top. This differs from the UI, which preserves both. Send the final, intended set of attributes in a single call.
Need a security review?
Need a security review?
When the vendor’s
inherentRiskLevel warrants it, Vanta automatically creates a security review. The review must be started from the Vendor page — there’s no API endpoint to start it.Attach a document to the vendor
Your terminal — Expected response (
POST /v1/vendors/{vendorId}/documents as multipart/form-data with the file in the file field and a document type (e.g. SOC2_REPORT, DPA, PRIVACY_POLICY, OTHER).200) — the uploaded document metadata:Got a 404?
Got a 404?
The
vendorId is wrong. Re-run Step 1 and copy the id exactly from the response (or from the URL on the Vendor page).Got a 415 or `Content-Type` error?
Got a 415 or `Content-Type` error?
The request must be
multipart/form-data — don’t set Content-Type manually, let your HTTP client add the boundary. Pass the file with -F (curl), files= (requests), or a FormData body (fetch).Got a 400 on `type`?
Got a 400 on `type`?
type is required and must be one of Vanta’s supported document types. Common values: SOC2_REPORT, ISO_27001_REPORT, PEN_TEST, DPA, PRIVACY_POLICY, OTHER. The full enum lives in the API reference.Updating an existing vendor? Use
PATCH /v1/vendors/{vendorId} with the same body shape (without name if you’re not changing it). To replace stale evidence, repeat Step 2 — each upload is stored independently and the latest is shown first.Congratulations
You’ve added a vendor to your Vanta inventory and attached evidence to it. The vendor is now visible on your Vendor page, counts toward vendor-management tests, and the document is captured in your audit log.Next steps
Sync custom vendor fields
Attach organization-specific metadata — contract dates, internal owners, risk tiers — to the vendor.
Assign a control owner
Make a specific user accountable for the vendor-management controls this evidence supports.
Try it in Postman
Import the collection and run
createVendor + documents against a sandbox in seconds.Manage Vanta API reference
Browse every Manage Vanta endpoint — vendors, controls, tests, documents, people.