Avaloq · JSON Structure

Banking Create Customer Request Structure

Request to create a new customer

Type: object Properties: 6 Required: 3
BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management

CreateCustomerRequest is a JSON Structure definition published by Avaloq, describing 6 properties, of which 3 are required. It conforms to the https://json-schema.org/draft/2020-12/schema meta-schema.

Properties

firstName lastName email phone residenceCountry dateOfBirth

Meta-schema: https://json-schema.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avaloq/refs/heads/main/json-schema/banking-create-customer-request-schema.json",
  "description": "Request to create a new customer",
  "type": "object",
  "required": [
    "firstName",
    "lastName",
    "email"
  ],
  "properties": {
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Smith"
    },
    "email": {
      "type": "email",
      "example": "jane.smith@example.com"
    },
    "phone": {
      "type": "string",
      "example": "+41791234567"
    },
    "residenceCountry": {
      "type": "string",
      "example": "CH"
    },
    "dateOfBirth": {
      "type": "date",
      "example": "1980-06-15"
    }
  },
  "name": "CreateCustomerRequest"
}