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

# Schedule Call

> Schedules a new call via Vapi. Automatically builds a dynamic system prompt combining AI Settings (company, goals) and Lead data as `assistantOverrides`.



## OpenAPI

````yaml POST /scheduled-calls/schedule
openapi: 3.0.0
info:
  title: Closer Intellect AI API
  description: >-
    The core API documentation and interactive playground for Closer Intellect
    AI.
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /scheduled-calls/schedule:
    post:
      tags:
        - Scheduled Calls
      summary: Schedule a new call
      description: >-
        Schedules a new call via Vapi. Automatically builds a dynamic system
        prompt combining AI Settings (company, goals) and Lead data as
        `assistantOverrides`.
      operationId: ScheduledCallsController_scheduleCall
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduleCallDto'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    ScheduleCallDto:
      type: object
      properties:
        leadId:
          type: number
          example: 123
        leadName:
          type: string
          example: John Doe
        phone:
          type: string
          example: '+1234567890'
        scheduledTime:
          type: string
          example: '2026-05-04T10:00:00Z'
        callerType:
          type: string
          example: AI Agent
          enum:
            - Human Agent
            - AI Agent
      required:
        - leadId
        - leadName
        - scheduledTime
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````