Alianza Account API

The Account API from Alianza — 22 operation(s) for account.

OpenAPI Specification

alianza-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alianza Account API
  version: '2'
  description: 'Operations tagged Account across 2 of this provider''s published API definitions: alianza-apidocs-swagger2-original.json, alianza-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
  description: Development
- url: https://api.q2.alianza.com
  description: QA
- url: https://api.b2.alianza.com
  description: Beta
- url: https://api.alianza.com
  description: Production
tags:
- name: Account
paths:
  /v2/partition/{partitionId}/account/activation/multiple:
    post:
      tags:
      - Account
      summary: Multi Line Account Activation
      description: Use to activate account with multiple users/devices/telephone numbers
      operationId: multipleActivation
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: MultipleActivationX
            $ref: '#/components/schemas/MultipleActivationX_2'
          content:
            application/json:
              schema:
                originalRef: MultipleActivationX
                $ref: '#/components/schemas/MultipleActivationX_2'
        '400':
          description: Invalid account activation object supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: MultipleActivationX
            $ref: '#/components/schemas/MultipleActivationX_2'
          schema:
            originalRef: MultipleActivationX
            $ref: '#/components/schemas/MultipleActivationX_2'
        '400':
          description: Invalid account activation object supplied
        '404':
          description: Account not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: MultipleActivationX
              $ref: '#/components/schemas/MultipleActivationX_2'
        description: Multiple activation object
        required: true
  /v2/partition/{partitionId}/account/activation:
    post:
      tags:
      - Account
      summary: Account activation
      description: (DEPRECATED) Use to activate an account
      operationId: activation
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountActivationV2X
            $ref: '#/components/schemas/AccountActivationV2X_2'
          content:
            application/json:
              schema:
                originalRef: AccountActivationV2X
                $ref: '#/components/schemas/AccountActivationV2X_2'
        '400':
          description: Invalid account activation object supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountActivationV2X
            $ref: '#/components/schemas/AccountActivationV2X_2'
          schema:
            originalRef: AccountActivationV2X
            $ref: '#/components/schemas/AccountActivationV2X_2'
        '400':
          description: Invalid account activation object supplied
        '404':
          description: Account not found
      deprecated: true
      requestBody:
        content:
          application/json:
            schema:
              originalRef: AccountActivationV2X
              $ref: '#/components/schemas/AccountActivationV2X_2'
        description: Account activation object
        required: true
  /v2/partition/{partitionId}/account:
    get:
      tags:
      - Account
      operationId: retrieve_6
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          headers: {}
          responseSchema:
            type: array
            items:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: Account
                  $ref: '#/components/schemas/Account_2'
      responsesObject:
        '200':
          description: successful operation
          headers: {}
          responseSchema:
            type: array
            items:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
          schema:
            type: array
            items:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
    post:
      tags:
      - Account
      summary: Create account
      description: Use to create an account
      operationId: createAccount
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          content:
            application/json:
              schema:
                originalRef: Account
                $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid account object supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          schema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid account object supplied
        '404':
          description: Account not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
        description: Account object
        required: true
  /v2/partition/{partitionId}/account/search:
    get:
      tags:
      - Account
      summary: Account search
      description: Use to search for an account
      operationId: search_2
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: q
        in: query
        description: Search term for account search
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: AccountViewX
                  $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID or search term supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          schema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID or search term supplied
        '404':
          description: Account not found
  /v2/partition/{partitionId}/account/accounthistorysearch:
    get:
      tags:
      - Account
      summary: Account history record search
      description: Use to search for account history records
      operationId: accountHistoryByAccountNumberSearch
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountNumber
        in: query
        description: Account Number, required
        required: false
        schema:
          type: string
      - name: accountHistoryType
        in: query
        description: Account history type
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            enum:
            - PHONE_NUMBER
            - PROVISIONING
            - CALL_FORWARDING
            - CALL_SCREENING
            - ADDRESS
            - ADDRESS_CSR
            - ADDRESS_E911
            - ADDRESS_DIRECTORY_LISTING
            - ACCOUNT_STATUS
            - VOICEMAIL
            - CALLING_PLAN
            - INBOUND_CALLING_PLAN
            - IVR
            - SIP_TRUNK
            - SIP_TRUNK_FORWARD
            - SIP_TRUNK_GROUP
            - DEVICE
            - DEVICE_METADATA
            - USER
            - USER_API_AUTH
            - LINE_HUNTGROUP
            - ACCOUNT
            - LINE_APPEARANCE
            - LINE_HARDWARE
            - VFAX
            - PAGING_GROUP
            - PICKUP_GROUP
            - GROUP_OF_REFERENCES
            - CALL_PARKING_SPOT
            - ACCOUNT_USER
            - SIP_CREDENTIALS
            - BUSINESS_LINE
            - BUSINESS_LINE_HUNT_GROUP
            - CALL_GROUP
            - CALL_QUEUE
            - USER_DEVICE_LINE
            - EMERGENCY_NOTIFICATION
            - DYNAMIC_RESERVATION
            - SPECIALTY_LINE
            - AUTHORITY
            - AUTO_ATTENDANT
            - CONTACT
            - CONTACT_CENTER
            - CALL_RECORDING
            - ACCOUNT_CODE
            - SHORT_CODE
            - MEDIA_MANAGEMENT
            - SOUNDS
            - USER_GROUP
      - name: startDate
        in: query
        description: Start date
        required: false
        schema:
          type: string
      - name: endDate
        in: query
        description: End date
        required: false
        schema:
          type: string
      - name: firstResultIndex
        in: query
        description: First result to display, defaults to 0
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: maxResult
        in: query
        description: Maximum number to return, defaults to 20
        required: false
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountHistorySearchResponseX
            $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
          content:
            application/json:
              schema:
                originalRef: AccountHistorySearchResponseX
                $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
        '400':
          description: Invalid
        '404':
          description: Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountHistorySearchResponseX
            $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
          schema:
            originalRef: AccountHistorySearchResponseX
            $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
        '400':
          description: Invalid
        '404':
          description: Not found
  /v2/partition/{partitionId}/account/bulkstatuschange:
    post:
      tags:
      - Account
      summary: Change account status in bulk
      description: Use to change multiple account statuses
      operationId: bulkStatusChange
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: FileImportValidationErrorX
              $ref: '#/components/schemas/FileImportValidationErrorX'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: FileImportValidationErrorX
                  $ref: '#/components/schemas/FileImportValidationErrorX'
        '400':
          description: Invalid information supplied
        '404':
          description: Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: FileImportValidationErrorX
              $ref: '#/components/schemas/FileImportValidationErrorX'
          schema:
            type: array
            items:
              originalRef: FileImportValidationErrorX
              $ref: '#/components/schemas/FileImportValidationErrorX'
        '400':
          description: Invalid information supplied
        '404':
          description: Not found
      deprecated: true
      requestBody:
        content:
          multipart/form-data:
            schema:
              originalRef: MultipartFormDataInput
              $ref: '#/components/schemas/MultipartFormDataInput_2'
        description: List of numbers
        required: true
  /v2/partition/{partitionId}/account/bulkstatuschange_2:
    post:
      tags:
      - Account
      summary: Change account status in bulk
      description: Use to change multiple account statuses
      operationId: bulkStatusChange_2
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Job
            $ref: '#/components/schemas/Job_2'
          content:
            application/json:
              schema:
                originalRef: Job
                $ref: '#/components/schemas/Job_2'
        '202':
          description: Use Jobs API to check status
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Job
            $ref: '#/components/schemas/Job_2'
          schema:
            originalRef: Job
            $ref: '#/components/schemas/Job_2'
        '202':
          description: Use Jobs API to check status
      requestBody:
        content:
          application/json:
            schema:
              originalRef: JobUploadKey
              $ref: '#/components/schemas/JobUploadKey'
        description: Use Jobs API to upload file
  /v2/partition/{partitionId}/account/frequentlyaccessed:
    get:
      tags:
      - Account
      summary: Frequently accessed account search
      description: Use to list all frequently accessed accounts
      operationId: frequentlyAccessed
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: AccountViewX
                  $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID
        '404':
          description: Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          schema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID
        '404':
          description: Not found
  /v2/partition/{partitionId}/account/recentlyaccessed:
    get:
      tags:
      - Account
      summary: Recently accessed account search
      description: Use to list all recently accessed accounts
      operationId: recentlyAccessed
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: AccountViewX
                  $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID
        '404':
          description: Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
          schema:
            type: array
            items:
              originalRef: AccountViewX
              $ref: '#/components/schemas/AccountViewX'
        '400':
          description: Invalid partition ID
        '404':
          description: Not found
  /v2/partition/{partitionId}/account/validateproperties:
    get:
      tags:
      - Account
      summary: Pre-validate property on the Account object
      description: ''
      operationId: validateProperties_1
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountnumber
        in: query
        description: Account Number
        required: false
        schema:
          type: string
      - name: username
        in: query
        description: Username to validate
        required: false
        schema:
          type: string
      - name: macaddress
        in: query
        description: Mac address
        required: false
        schema:
          type: string
      - name: sipusername
        in: query
        description: Sip Username
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: boolean
          content:
            application/json:
              schema:
                type: boolean
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: boolean
          schema:
            type: boolean
  /v2/partition/{partitionId}/account/{accountId}:
    get:
      tags:
      - Account
      summary: Retrieve account by ID
      description: Use to retrieve a single account
      operationId: retrieveAccount
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: accountIdType
        in: query
        description: Defines if the ID is the account id or the account number.  Default is Id.  Possible Values are Id, AccountNumber
        required: false
        schema:
          type: string
          enum:
          - Id
          - AccountNumber
          - PhoneNumber
          - MacAddress
          default: Id
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          content:
            application/json:
              schema:
                originalRef: Account
                $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          schema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
    put:
      tags:
      - Account
      summary: Update account
      description: Use to update an account
      operationId: updateAccount
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          content:
            application/json:
              schema:
                originalRef: Account
                $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          schema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
        description: Account object
        required: true
    delete:
      tags:
      - Account
      summary: Delete account
      description: Use to delete an account
      operationId: deleteAccount
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: string
          content:
            application/json:
              schema:
                type: string
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: string
          schema:
            type: string
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
    patch:
      tags:
      - Account
      summary: Update account
      description: Use to update an account
      operationId: patch_2
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          content:
            application/json:
              schema:
                originalRef: Account
                $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
          schema:
            originalRef: Account
            $ref: '#/components/schemas/Account_2'
        '400':
          description: Invalid ID supplied
        '404':
          description: Account not found
      requestBody:
        content:
          application/json:
            schema:
              originalRef: Account
              $ref: '#/components/schemas/Account_2'
        description: Account object
        required: true
  /v2/partition/{partitionId}/account/{accountId}/macaddress/{macAddress}/inventory:
    get:
      tags:
      - Account
      summary: Determine which lines are available on a device/mac
      description: Uses to determine which lines are available on a device/mac, DEPRECATED use /v2/partition/{id}/account/{id}/deviceline?filterType=MAC_ADDRESS_INVENTORY&filter={mac} endpoint instead
      operationId: findAllAvailableDevicesByMacAddress
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: macAddress
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: DeviceX
              $ref: '#/components/schemas/DeviceX_2'
          content:
            application/json:
              schema:
                type: array
                items:
                  originalRef: DeviceX
                  $ref: '#/components/schemas/DeviceX_2'
        '400':
          description: Not in inventory, not available, in use
        '404':
          description: Device type not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            type: array
            items:
              originalRef: DeviceX
              $ref: '#/components/schemas/DeviceX_2'
          schema:
            type: array
            items:
              originalRef: DeviceX
              $ref: '#/components/schemas/DeviceX_2'
        '400':
          description: Not in inventory, not available, in use
        '404':
          description: Device type not found
      deprecated: true
  /v2/partition/{partitionId}/account/{accountId}/accounthistorysearch:
    get:
      tags:
      - Account
      summary: Account history record search
      description: Use to search for account history records
      operationId: accountHistoryByAccountIdSearch
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountId
        in: path
        description: ID of account
        required: true
        schema:
          type: string
      - name: accountHistoryType
        in: query
        description: Account history type
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            enum:
            - PHONE_NUMBER
            - PROVISIONING
            - CALL_FORWARDING
            - CALL_SCREENING
            - ADDRESS
            - ADDRESS_CSR
            - ADDRESS_E911
            - ADDRESS_DIRECTORY_LISTING
            - ACCOUNT_STATUS
            - VOICEMAIL
            - CALLING_PLAN
            - INBOUND_CALLING_PLAN
            - IVR
            - SIP_TRUNK
            - SIP_TRUNK_FORWARD
            - SIP_TRUNK_GROUP
            - DEVICE
            - DEVICE_METADATA
            - USER
            - USER_API_AUTH
            - LINE_HUNTGROUP
            - ACCOUNT
            - LINE_APPEARANCE
            - LINE_HARDWARE
            - VFAX
            - PAGING_GROUP
            - PICKUP_GROUP
            - GROUP_OF_REFERENCES
            - CALL_PARKING_SPOT
            - ACCOUNT_USER
            - SIP_CREDENTIALS
            - BUSINESS_LINE
            - BUSINESS_LINE_HUNT_GROUP
            - CALL_GROUP
            - CALL_QUEUE
            - USER_DEVICE_LINE
            - EMERGENCY_NOTIFICATION
            - DYNAMIC_RESERVATION
            - SPECIALTY_LINE
            - AUTHORITY
            - AUTO_ATTENDANT
            - CONTACT
            - CONTACT_CENTER
            - CALL_RECORDING
            - ACCOUNT_CODE
            - SHORT_CODE
            - MEDIA_MANAGEMENT
            - SOUNDS
            - USER_GROUP
      - name: startDate
        in: query
        description: Start date
        required: false
        schema:
          type: string
      - name: endDate
        in: query
        description: End date
        required: false
        schema:
          type: string
      - name: firstResultIndex
        in: query
        description: First result to display, defaults to 0
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: maxResult
        in: query
        description: Maximum number to return, defaults to 20
        required: false
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: AccountHistorySearchResponseX
            $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
          content:
            application/json:
              schema:
                originalRef: AccountHistorySearchResponseX
                $ref: '#/components/schemas/AccountHistorySearchResponseX_2'
        '400':
   

# --- truncated at 32 KB (89 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/alianza/refs/heads/main/openapi/alianza-account-api-openapi.yml