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

# Update customer FX settings



## OpenAPI

````yaml patch /v1/customers/{id}/fx
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/{id}/fx:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    patch:
      summary: Update customer FX settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerFxInput'
      responses:
        '200':
          description: FX settings updated successfully
components:
  schemas:
    UpdateCustomerFxInput:
      type: object
      properties:
        fx_settings:
          type: string

````