> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usenerve.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Index Call

Index a call into your Nerve knowledge base. This endpoint processes call data including title, notes, attendees, and metadata, then creates a searchable note.

#### Authorizations

<ParamField header="Authorization" type="string" required>
  Bearer authentication header of the form `Bearer <token>`, where `<token>` is your OAuth access token.
</ParamField>

#### Request Body

<ParamField body="call_title" type="string" required>
  The title of the call
</ParamField>

<ParamField body="call_notes" type="string" required>
  The notes or content from the call
</ParamField>

<ParamField body="call_id" type="string">
  A unique identifier for the call (used as remote\_id)
</ParamField>

<ParamField body="call_attendees" type="string">
  Call attendees in various formats:

  * `"Name1, Name2 -- email1@example.com, email2@example.com"` (names and emails)
  * `"Name1, Name2"` (names only)
  * `"email1@example.com, email2@example.com"` (emails only)
  * `"Name1 <email1@example.com>, Name2 <email2@example.com>"` (combined format)
</ParamField>

<ParamField body="call_source" type="string">
  The source of the call (e.g., "Zoom", "Teams", "Google Meet")
</ParamField>

<ParamField body="call_url" type="string">
  URL link to the call recording or meeting details
</ParamField>

#### Response

<ResponseField name="message" type="string">
  Confirmation message: "Blob indexed"
</ResponseField>
