> ## 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 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.json put /ramp/organization/{org_id}/name
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Agreements
    description: Legal agreement acceptance during onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /ramp/organization/{org_id}/name:
    put:
      tags:
        - Organizations
      summary: Rename 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.
      operationId: rename_org
      parameters:
        - name: org_id
          in: path
          description: >-
            The organization to rename — must be the caller's own org or a
            direct child (grandchildren cannot be renamed).
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RenameOrgRequest'
        required: true
      responses:
        '200':
          description: The renamed organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RenameOrgResponse'
        '400':
          description: Invalid name — empty, whitespace-only, or exceeds 200 characters
        '403':
          description: Not permitted to rename this organization
        '404':
          description: Organization not found
components:
  schemas:
    RenameOrgRequest:
      type: object
      required:
        - displayName
      properties:
        displayName:
          type: string
      example:
        displayName: Acme Inc
    RenameOrgResponse:
      type: object
      required:
        - organizationId
        - displayName
      properties:
        displayName:
          type: string
        organizationId:
          type: string
          format: uuid
      example:
        displayName: Acme Inc
        organizationId: 123e4567-e89b-12d3-a456-426614174000
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````