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

# Update Call

> Update metadata or status on an existing call record.



## OpenAPI

````yaml PATCH /call/{call_id}
openapi: 3.1.0
info:
  title: Stride Agents API
  description: >

    Build and deploy AI voice agents that can make and receive phone calls with
    natural conversation.


    ## Authentication


    All endpoints require an API key passed via the `Authorization` header:


    ```

    Authorization: Bearer sk_your_api_key

    ```


    ## Resources


    - **Agents** — Create and configure AI voice agents

    - **Calls** — Initiate, monitor, and manage voice calls

    - **Phone Numbers** — Manage phone numbers and routing

    - **Tools** — Define function calling tools for agents

    - **Knowledge Bases** — Upload documents for RAG-powered conversations

    - **Voices** — Browse available TTS voices
  version: 1.0.0
servers:
  - url: /v1
security: []
paths:
  /call/{call_id}:
    patch:
      tags:
        - Calls
      summary: Update call
      description: Update metadata or status on an existing call record.
      operationId: update_call_call__call_id__patch
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Call Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCallRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCallResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    UpdateCallRequest:
      properties:
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
      type: object
      title: UpdateCallRequest
      description: Request body for partially updating a call record.
    GetCallResponse:
      properties:
        id:
          type: string
          title: Id
        org_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Org Id
        agent_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Id
        phone_number:
          type: string
          title: Phone Number
        duration:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration
          default: 0
        status:
          type: string
          title: Status
        direction:
          type: string
          title: Direction
        transcript:
          anyOf:
            - type: string
            - type: 'null'
          title: Transcript
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
        cost:
          anyOf:
            - type: number
            - type: 'null'
          title: Cost
          default: 0
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
        structured_data:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Structured Data
        contact_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Contact Id
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
        - phone_number
        - status
        - direction
      title: GetCallResponse
      description: Full call details returned by GET /v1/call/{id}.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      scheme: bearer

````