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

# Update organization information



## OpenAPI

````yaml api-reference/openapi.json put /api/organization
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/organization:
    put:
      tags:
        - Organization
      summary: Update organization information
      operationId: OrganizationController_updateOrganization
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrganizationDto'
      responses:
        '200':
          description: Organization information has been updated successfully
components:
  schemas:
    UpdateOrganizationDto:
      type: object
      properties:
        name:
          type: string
          description: Organization name
          example: Acme Inc.
        industry:
          type: string
          description: Industry of the organization
          example: Technology
        location:
          type: string
          description: Country location in ISO 3166-1 alpha-2 format
          example: US
        baseCurrency:
          type: string
          description: Base currency in ISO 4217 format
          example: USD
        timezone:
          type: string
          description: Timezone of the organization
          example: America/New_York
        fiscalYear:
          type: string
          description: Starting month of fiscal year
          example: January
        language:
          type: string
          description: Language/locale of the organization
          example: en-US
        dateFormat:
          type: string
          description: Date format used by the organization
          example: MM/DD/YYYY
        address:
          type: object
          description: Organization address details
          example:
            address_1: 123 Main St
            address_2: Suite 100
            postal_code: '10001'
            city: New York
            stateProvince: NY
            phone: +1-555-123-4567
        primaryColor:
          type: string
          description: Primary brand color in hex format
          example: '#4285F4'
        logoKey:
          type: string
          description: Logo file key reference
          example: organizations/acme-logo-123456.png
        taxNumber:
          type: string
          description: Organization tax identification number
          example: 12-3456789

````