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

# Update display settings

> Accepts brandColor and contactPhone ONLY. webhookUrl is deliberately NOT accepted here — use PUT /organizations/me/webhook. ORG_ADMIN only.



## OpenAPI

````yaml /api-reference/openapi.json put /organizations/me/settings
openapi: 3.1.0
info:
  title: MicroCrop Partner API
  version: 1.0.0
  description: >-
    Parametric crop & livestock insurance API for integrating partners. All
    requests authenticate with an organization API key in the `x-api-key`
    header.
servers:
  - url: https://app.microcrop.app/api
    description: Production (Base mainnet)
security:
  - apiKey: []
tags:
  - name: Farmers
  - name: Plots
  - name: Herds
  - name: Policies
  - name: Payments
  - name: Payouts
  - name: Organization
  - name: Determinations
paths:
  /organizations/me/settings:
    put:
      tags:
        - Organization
      summary: Update display settings
      description: >-
        Accepts brandColor and contactPhone ONLY. webhookUrl is deliberately NOT
        accepted here — use PUT /organizations/me/webhook. ORG_ADMIN only.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                brandColor:
                  type: string
                  example: '#16a34a'
                contactPhone:
                  type: string
                  example: '+254712345678'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
components:
  schemas:
    Envelope:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````