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

# Syncs contacts from the firm's OpenPhone account

> Syncs contacts from the firm's OpenPhone account.



## OpenAPI

````yaml /api-reference/openapi.json post /api/contacts/sync/openphone
openapi: 3.1.0
info:
  title: Lawtte API
  version: v2
  description: >-
    REST API behind the Lawtte dashboard: AI voice and chat calls, agent
    configuration, leads, campaigns, contacts, and automation workflows.
  contact:
    name: Lawtte support
    email: contact@lawtte.ai
    url: https://www.lawtte.ai
servers:
  - url: https://www.lawtte.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Voice & Chat
    description: Manage AI voice calls and chat sessions powered by Donna AI.
  - name: Agent Config
    description: Read and update AI agent prompts, voices, and configurations.
  - name: Appointments
    description: Check availability and book appointments via Cal.com integration.
  - name: Webhooks
    description: Receive real-time events after calls end.
  - name: Leads
    description: Create, manage, and analyze leads captured by your AI agents.
  - name: Campaigns
    description: Create and launch outbound call campaigns to lists of leads.
  - name: Contacts
    description: >-
      Import and sync contacts from CSV, OpenPhone, RingCentral, and practice
      management systems.
  - name: Workflows
    description: >-
      Build and manage automation workflows using a visual node-based flow
      editor.
  - name: Utilities
    description: Helper endpoints for AI-powered data extraction and widget testing.
paths:
  /api/contacts/sync/openphone:
    post:
      tags:
        - Contacts
      summary: Syncs contacts from the firm's OpenPhone account
      description: Syncs contacts from the firm's OpenPhone account.
      operationId: post-contacts-sync-openphone
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - firmSlug
              properties:
                firmSlug:
                  type: string
                  description: Firm identifier.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
              example:
                synced: 120
                updated: 34
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Lawtte API key or session token: `Authorization: Bearer <token>`.'

````

## Related topics

- [Syncs contacts from the firm's RingCentral account](/api-reference/contacts/syncs-contacts-from-the-firms-ringcentral-account.md)
- [Generic PMS sync endpoint](/api-reference/contacts/generic-pms-sync-endpoint.md)
- [Lawtte documentation](/index.md)
- [Batch imports contacts from a CSV payload](/api-reference/contacts/batch-imports-contacts-from-a-csv-payload.md)
- [Lists contacts for a firm with optional search and pagination](/api-reference/contacts/lists-contacts-for-a-firm-with-optional-search-and-pagination.md)
