---
title: "UpdateProfileRequest"
url: "https://dev.ionova.ai/apis/ars-address-resolution-service-4/versions/fdd2c316-7f84-4f04-8bb7-64e9bf97893b/schemas/UpdateProfileRequest"
---

> Full API specification: https://dev.ionova.ai/apis/ars-address-resolution-service-4/versions/fdd2c316-7f84-4f04-8bb7-64e9bf97893b.md

# UpdateProfileRequest

PATCH body for EP-23. Only account-level fields are patchable here. [v4.3] Channel-specific settings (scheme, schemeVersion, direction, outputMode, autoRepairMode, targetFormat) are now managed via EP-26 channelProfile PATCH.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: ARS — Address Resolution Service
  version: 4.3.1
servers:
  - url: https://api-uat.ionova.ai/ars
    description: UAT (test data only)
components:
  schemas:
    Quality:
      type: string
      description: Postal database verification depth.
      enum:
        - premium
        - standard
        - basic
    UpdateProfileRequest:
      type: object
      xml:
        name: UpdateProfileRequest
      description: >
        PATCH body for EP-23. Only account-level fields are patchable here.

        [v4.3] Channel-specific settings (scheme, schemeVersion, direction,
        outputMode,

        autoRepairMode, targetFormat) are now managed via EP-26 channelProfile
        PATCH.
      properties:
        region:
          type: string
          description: "Deployment region for data residency. One of: europe_sepa,
            us_east, ap_southeast."
        pspCountry:
          type: string
          pattern: ^[A-Z]{2}$
          description: Account-level institutional PSP country fallback (ISO 3166-1
            alpha-2).
        timezone:
          type: string
          description: Account-level institutional timezone fallback. Overridden by
            channelProfile.
        quality:
          allOf:
            - $ref: "#/components/schemas/Quality"
          description: Account-level institutional quality fallback. Overridden by
            channelProfile.
        repairConfidenceThreshold:
          type: number
          minimum: 0
          maximum: 1
          description: Account-level institutional confidence threshold fallback (0.0–1.0).
```
