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

# Rename an organization

> Renames the caller's own organization or a direct child organization. The caller's
organization is resolved from the API key.

The target `org_id` must be either:
- The caller's own organization, OR
- A direct child organization (where `parent_organization_id` equals the caller's org)

Grandchild organizations cannot be renamed through this endpoint.




## OpenAPI

````yaml /openapi.yaml put /ramp/organization/{org_id}/name
openapi: 3.1.0
info:
  title: FX API
  version: 1.0.0
  description: >
    API for managing FX operations including onboarding, quotes, orders, and
    customer management.

    This API provides endpoints for managing customers, bank accounts, crypto
    wallets, orders, and webhooks.
servers:
  - url: https://api.etherfuse.com
    description: Production API
  - url: https://api.sand.etherfuse.com
    description: Sandbox API (for testing)
security: []
tags:
  - name: Lookup
    description: Public endpoints for looking up stablebond and exchange rate data
  - name: Assets
    description: Get available assets for ramping
  - name: Onboarding
    description: Customer onboarding and KYC
  - name: Bank Accounts
    description: Manage customer bank accounts
  - name: Agreements
    description: Handle customer agreements and consents
  - name: Quotes
    description: Get quotes for conversions
  - name: Orders
    description: Create and manage orders
  - name: Swaps
    description: Create and manage swaps
  - name: Customers
    description: Manage customers
  - name: Crypto Wallets
    description: Manage crypto wallets
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: Organizations
    description: Manage organizations and child organizations
paths:
  /ramp/organization/{org_id}/name:
    put:
      tags:
        - Organizations
      summary: Rename an organization
      description: >
        Renames the caller's own organization or a direct child organization.
        The caller's

        organization is resolved from the API key.


        The target `org_id` must be either:

        - The caller's own organization, OR

        - A direct child organization (where `parent_organization_id` equals the
        caller's org)


        Grandchild organizations cannot be renamed through this endpoint.
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: ID of the organization to rename (own org or direct child)
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - displayName
              properties:
                displayName:
                  type: string
                  description: >-
                    New display name for the organization. Must be non-empty and
                    at most 200 characters.
                  maxLength: 200
            example:
              displayName: Bando Guadalajara
      responses:
        '200':
          description: Organization renamed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  organizationId:
                    type: string
                    format: uuid
                    description: ID of the renamed organization
                  displayName:
                    type: string
                    description: New display name
              example:
                organizationId: 123e4567-e89b-12d3-a456-426614174000
                displayName: Bando Guadalajara
        '400':
          description: Invalid name — empty, whitespace-only, or exceeds 200 characters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Caller does not have authority over this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Organization not found or soft-deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
      example:
        error: Invalid request parameters
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key for authentication. Pass the key directly (e.g., `Authorization:
        your-api-key`). Do not use a `Bearer` prefix.

````