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

# Update Scheduled Call



## OpenAPI

````yaml PUT /batch/scheduled-calls/{call_id}
openapi: 3.0.0
info:
  title: CallIntel API
  version: 1.0.0
  description: API for managing AI-powered voice calls, batch processing, and scheduling.
servers:
  - url: https://py.callai.rejoicehub.com
    description: Production Server
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /batch/scheduled-calls/{call_id}:
    put:
      tags:
        - Batch
      summary: Update Scheduled Call
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduledCallUpdateRequest'
      responses:
        '200':
          description: Updated successfully.
components:
  schemas:
    ScheduledCallUpdateRequest:
      type: object
      properties:
        name:
          type: string
        from_number:
          type: string
        scheduled_time:
          type: string
          format: date-time
        status:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````