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

# Update current user organization details

> Partially updates name, phoneNumber, address, and/or logoUrl on the caller's organization. When logoUrl is a base64 data URL or http(s) URL it is uploaded to R2 and stored as a signed-storage key; passing "" or null clears the logo.



## OpenAPI

````yaml /api-reference/openapi.yaml put /api/organizations/user
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/organizations/user:
    put:
      tags:
        - Organizations
      summary: Update current user organization details
      description: >-
        Partially updates name, phoneNumber, address, and/or logoUrl on the
        caller's organization. When logoUrl is a base64 data URL or http(s) URL
        it is uploaded to R2 and stored as a signed-storage key; passing "" or
        null clears the logo.
      operationId: put_organizations_user
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrganizationDetailsRequest'
      responses:
        '200':
          description: Organization details updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationMessageResponse'
        '404':
          description: Organization not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    UpdateOrganizationDetailsRequest:
      type: object
      properties:
        name:
          type: string
          description: Updated organization display name.
        phoneNumber:
          type: string
          description: Updated primary organization phone number in E.164 format.
        address:
          type: string
          description: Updated mailing/business address.
        logoUrl:
          type: string
          description: >-
            New logo image; accepts a data URI (e.g. base64 PNG) which the
            server uploads and stores as a hosted URL.
      additionalProperties: true
      example:
        name: Acme Corp
        phoneNumber: '+14165550100'
        address: 123 Yonge St, Toronto, ON
        logoUrl: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...
    OrganizationMessageResponse:
      type: object
      properties:
        message:
          type: string
      additionalProperties: true
      example:
        message: Organization details updated successfully
    OrganizationErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: string
      additionalProperties: true
      example:
        error: Organization not found
        details: No organization exists with the provided id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````