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

# Update profile



## OpenAPI

````yaml /api-reference/openapi.json patch /api/v1/profile
openapi: 3.1.0
info:
  title: Optareach Public API
  version: 1.0.0
  description: >-
    Platform-first API surface for accounts, prospects, campaigns, inbox,
    tracked searches, AI rooms, jobs, workspaces, analytics, billing, profile,
    and knowledge bases.
servers:
  - url: /
    description: Current environment
security: []
tags:
  - name: Meta
    description: API metadata and discovery
  - name: Platforms
    description: Platform registry and capabilities
  - name: Accounts
    description: Connected sender accounts
  - name: Prospects
    description: Prospect lists and leads
  - name: Campaigns
    description: Campaign lifecycle and performance
  - name: Inbox
    description: Conversations and messages
  - name: TrackedSearches
    description: Mentions and tracked search streams
  - name: AI
    description: AI chat rooms and enrichment
  - name: Jobs
    description: Background jobs
  - name: Workspaces
    description: Workspace management
  - name: KnowledgeBases
    description: Knowledge base management
  - name: Analytics
    description: Global dashboard metrics
  - name: Billing
    description: Subscriptions and credits
  - name: Profile
    description: Current user profile
  - name: Tags
    description: Conversation tags
  - name: Notifications
    description: Notification feed
paths:
  /api/v1/profile:
    patch:
      tags:
        - Profile
      summary: Update profile
      requestBody:
        description: Profile update payload
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileWrite'
            example:
              fullName: Simeon S.
              timezone: Europe/Skopje
      responses:
        '200':
          description: Profile updated
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Profile'
                required:
                  - data
              example:
                data:
                  id: user_simeon
                  email: simeon@optareach.com
                  fullName: Simeon S.
                  timezone: Europe/Skopje
                  workspaceId: ws_optareach
components:
  schemas:
    ProfileWrite:
      type: object
      properties:
        fullName:
          type: string
        timezone:
          type: string
    Profile:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
          format: email
        fullName:
          type: string
        timezone:
          type: string
        workspaceId:
          type: string
      required:
        - id
        - email
        - fullName

````