v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
AI SDR Knowledge Bases

Create a knowledge base

<small>Requires the ai-sdr:write scope (or a broader one that includes it).</small>

Creates a new knowledge base. Only name is required.

Requires the AI SDR feature on the caller's team.

post/v3/ai-sdr/knowledge-bases

Request body

namestring required

Display name of the knowledge base

instructionsstring

Free-form instructions applied when the knowledge base is referenced by AI SDR generations.

Example request

{
  "name": "Product knowledge base v3",
  "instructions": "Reference internal launch deck before answering pricing questions."
}

Response

Knowledge base created successfully

idinteger

Unique identifier for the knowledge base

namestring

Display name of the knowledge base

instructionsstring

Free-form instructions applied when the knowledge base is referenced by AI SDR generations.

updatedAtstring date-time

Timestamp of the last modification

ownerUserIdinteger nullable

User ID of the owner. null when the owner has been removed from the team.

Example response

{
  "id": 4821,
  "name": "Product knowledge base v3",
  "instructions": "Reference internal launch deck before answering pricing questions.",
  "updatedAt": "2026-05-10T14:32:11Z",
  "ownerUserId": 1234
}