> ## 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.

# Set partner fee

> Sets the default partner fee (in basis points) for the caller's organization. The
target organization is resolved from the API key — the fee always applies to the org
that owns the key. The fee is capped at 500 bps (5.00%).

To configure a different org (for example, a child organization), call this endpoint
using an API key issued for that org.

Once set, this default applies to all new quotes for the organization unless overridden
per-quote via the `partnerFeeBps` field on the quote request.

Partner fees are layered on top of platform fees and settled offline via finance —
there is no on-chain component.



## OpenAPI

````yaml /openapi.json put /ramp/partner-fee
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/partner-fee:
    put:
      tags:
        - Organizations
      summary: Set partner fee
      description: >-
        Sets the default partner fee (in basis points) for the caller's
        organization. The

        target organization is resolved from the API key — the fee always
        applies to the org

        that owns the key. The fee is capped at 500 bps (5.00%).


        To configure a different org (for example, a child organization), call
        this endpoint

        using an API key issued for that org.


        Once set, this default applies to all new quotes for the organization
        unless overridden

        per-quote via the `partnerFeeBps` field on the quote request.


        Partner fees are layered on top of platform fees and settled offline via
        finance —

        there is no on-chain component.
      operationId: set_partner_fee
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetPartnerFeeRequest'
        required: true
      responses:
        '200':
          description: The updated default partner fee (echoes the new value)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetPartnerFeeRequest'
        '400':
          description: Invalid value — must be between 0 and 500
components:
  schemas:
    SetPartnerFeeRequest:
      type: object
      required:
        - partnerFeeDefaultBps
      properties:
        partnerFeeDefaultBps:
          type: integer
          format: int32
      example:
        partnerFeeDefaultBps: 100
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````