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

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

# ProfileResponse

Account-level profile. Contains institutional fallback settings and a listing of all registered channelProfiles. [v4.3] scheme, schemeVersion, direction, targetFormat, autoRepairMode, pspCountry, timezone, quality, repairConfidenceThreshold have been moved to channelProfile. The account profile now retains only institution-level fallback values (pspCountry, timezone, quality, repairConfidenceThreshold).

## 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:
    FormatLimits:
      type: object
      xml:
        name: FormatLimits
      description: Default address line count and length limits for the account.
      properties:
        maxLines:
          type: integer
          description: Default maximum address lines.
          example: 3
        maxLineLength:
          type: integer
          description: Default maximum characters per line.
          example: 35
    ChannelProfileSummary:
      type: object
      xml:
        name: ChannelProfileSummary
      description: Summary entry for a channelProfile in the account profile listing.
      properties:
        channelName:
          type: string
        channel:
          $ref: "#/components/schemas/ChannelType"
        scheme:
          $ref: "#/components/schemas/SchemeCode"
        schemeVersion:
          $ref: "#/components/schemas/SchemeVersion"
        direction:
          $ref: "#/components/schemas/Direction"
        outputMode:
          $ref: "#/components/schemas/OutputMode"
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    ChannelType:
      type: string
      description: Payment delivery channel type.
      enum:
        - api
        - file
        - other
    SchemeCode:
      type: string
      description: Payment scheme identifier.
      enum:
        - SCT
        - SCT_INST
        - SDD_CORE
        - SDD_B2B
        - OCT_INST
        - CBPRPLUS
        - CHAPS
        - T2
        - EURO1
        - FEDWIRE
        - OTHER
    SchemeVersion:
      type: string
      description: ISO 20022 scheme version / SR year.
      enum:
        - SR2025
        - SR2026
    Direction:
      type: string
      description: Payment processing direction. OUTBOUND = sending; INBOUND = receiving.
      enum:
        - OUTBOUND
        - INBOUND
    OutputMode:
      type: string
      description: |
        Address line rendering constraints applied during output formatting.
        - EPC: 2 lines × 70 chars
        - CBPR_PLUS: 3 lines × 35 chars
        - MT_LEGACY: 2 lines × 35 chars
        - COMPLIANCE: 7 lines × 70 chars
      enum:
        - EPC
        - CBPR_PLUS
        - MT_LEGACY
        - COMPLIANCE
    ProfileResponse:
      type: object
      xml:
        name: ProfileResponse
      description: >
        Account-level profile. Contains institutional fallback settings and

        a listing of all registered channelProfiles.

        [v4.3] scheme, schemeVersion, direction, targetFormat, autoRepairMode,

        pspCountry, timezone, quality, repairConfidenceThreshold have been moved

        to channelProfile. The account profile now retains only
        institution-level

        fallback values (pspCountry, timezone, quality,
        repairConfidenceThreshold).
      properties:
        account_id:
          type: string
          description: Unique account identifier.
          example: acc_8f2a91bc
        region:
          type: string
          description: Deployment region for data residency (EU-based data centres).
          example: europe_sepa
        community:
          type: string
          description: Account community / tier classification. System-assigned.
          example: premium_tier
        formatLimits:
          $ref: "#/components/schemas/FormatLimits"
        channelProfiles:
          type: array
          description: Array of all registered channelProfiles for this account. Each
            entry is a summary.
          items:
            $ref: "#/components/schemas/ChannelProfileSummary"
```
