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



## OpenAPI

````yaml put /v1/addresses/{id}
openapi: 3.0.0
info:
  title: Corebanq - Addresses API
  description: API endpoints for address management
  version: 1.0.0
servers: []
security: []
tags:
  - name: Addresses
    description: Address management operations
paths:
  /v1/addresses/{id}:
    put:
      summary: Update address
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAddressInput'
      responses:
        '200':
          description: Address updated successfully
components:
  schemas:
    UpdateAddressInput:
      type: object
      properties:
        street:
          type: string
          maxLength: 255
        number:
          type: string
          maxLength: 50
        additional:
          type: string
          maxLength: 255
        postal_code:
          type: string
          minLength: 3
          maxLength: 10
        city:
          type: string
          maxLength: 100
        state:
          type: string
          maxLength: 100
        country:
          type: string
          minLength: 2
          maxLength: 2
        is_primary:
          type: boolean
        metadata:
          type: object

````