For AI agents: a documentation index is available at https://docs.coverbase.com/llms.txt — this page is also available in markdown by appending .md to the URL.
An intake session (cbintksn_...) is a vendor intake request. Creating one through this API registers the vendor, creates the intake request in the dashboard’s Vendor Intake queue, and kicks off AI processing that auto-answers the selected inherent risk questionnaire(s). Reviewers then approve or deny the request in the dashboard; on approval, the questionnaire-derived inherent risk scores are applied to the vendor and its services.
Use this API to embed Coverbase intake inside another system (procurement tool, ticketing, internal portal): POST the request — including any free-form context you already have — and poll for the generated answers.
All endpoints are org-scoped to the API key. See API conventions for authentication, IDs, timestamps, and the error envelope.
| Method | Path | Idempotent |
|---|---|---|
POST | /v1/intake/api/sessions | Yes (external_id) |
GET | /v1/intake/api/sessions/{session_id} | — |
GET | /v1/intake/api/sessions/external/{external_id} | — |
Create an intake session
POST /v1/intake/api/sessions201 Created with the new session_id. Replaying the same external_id
returns the existing session_id with 200 OK and does not reprocess — the
original request’s data (including context) is retained, and any changed
fields in the replay are ignored. To analyze a vendor with updated context,
create a new request with a new external_id.
Body fields
Name of the vendor the intake request is for.
Inherent risk questionnaire IDs (
cbqstnr_...) to auto-answer. At least one
is required; unknown IDs return 404.Unstructured free-form context about the engagement — procurement ticket
text, requester emails, architecture notes, security questionnaire excerpts,
anything. Coverbase uses it as the highest-priority evidence when
auto-answering the questionnaire (ahead of uploaded documents and web
research), so the inherent risk analysis is driven by what you already know
about the engagement. Maximum 100,000 characters. The context is persisted on
the intake session, so later reprocessing runs reuse it.Note that roughly the first 20,000 characters are included in each
question’s evidence (longer context is truncated per question), so put the
most decision-relevant facts first rather than padding toward the limit.
When your context exceeds that cap, the create response sets
context_truncated: true.Public website of the vendor. Improves web research and disambiguation.
Short description of what the vendor does.
What your organization intends to use the vendor for.
Your identifier for this request (e.g. the procurement ticket number).
Enforced unique per org; replays are idempotent and you can fetch the
session by this ID later.
Example request
Response
context_truncated is true when the submitted context exceeds the
per-question evidence cap — the full text is stored, but each question prompt
only receives the leading portion.
Get an intake session
GET /v1/intake/api/sessions/{session_id}GET /v1/intake/api/sessions/external/{external_id}.
Session status
status | Meaning |
|---|---|
pending | Created; processing has not produced answers yet |
processing | AI answering is in flight |
complete | Answers generated; the request is ready for reviewer triage in the dashboard |
failed | Processing failed for every question (e.g. dispatch failure) — contact support or retry with a new request |
answers[] carries question_id, question_text,
response_type (free_text, single_select, multi_select), the generated
answer_text or selected_options, the model’s reasoning, and a per-answer
status (answered, pending, failed). failed_count summarizes failed
answers.
Example response
How context drives inherent risk
- Evidence assembly. For every questionnaire question, Coverbase builds an
evidence stack ordered by reliability: your provided
context, then intake follow-up responses, then uploaded documents, then targeted web research. - Auto-answering. The answer agent answers each question from that evidence, recording its reasoning per answer. Questions it cannot answer are flagged for human review rather than guessed.
- Scoring & review. The answered inherent risk questionnaire produces the IRQ score and per-domain risk breakdown shown on the intake request in the dashboard. A reviewer approves or denies the request; approval applies the inherent risk scores to the vendor and its services.
The intake request created by this API appears immediately in the
dashboard’s Vendor Intake queue, exactly like a portal-submitted
request — same triage workflow, same finalize/approve flow.