ECI Solutions Customer API

The Customer API from ECI Solutions — 13 operation(s) for customer.

Operations 25

GET /api/v1/customers Get a list of customers #
POST /api/v1/customers Create a customer #
GET /api/v1/customers/{id} Get a Customer record by customer id #
PATCH /api/v1/customers/{id} Update a customer #
DELETE /api/v1/customers/{id} Delete a customer by customer id #
POST /api/v1/customers/{id}/invoices Create a customer invoice #
GET /api/v1/customers/{id}/invoices/{invoiceId} Get a Customer Invoice record #
PATCH /api/v1/customers/{id}/invoices/{invoiceId} Update a customer invoice #
DELETE /api/v1/customers/{id}/invoices/{invoiceId} Delete a customer invoice by invoice id #
POST /api/v1/customers/{id}/invoices/{invoiceId}/upload-file Upload an invoice file #
POST /api/v1/customers/{id}/sales-orders Create a customer sales order #
GET /api/v1/customers/{id}/sales-orders/{salesOrderId} Get a Customer Sales Order record #
PATCH /api/v1/customers/{id}/sales-orders/{salesOrderId} Update a customer sales order #
DELETE /api/v1/customers/{id}/sales-orders/{salesOrderId} Delete a customer sales order by sales order id #
POST /api/v1/customers/{id}/sales-orders/{salesOrderId}/upload-file Upload a sales order file #
GET /api/v1/customers/{customerId} Get a single customer by Id #
PATCH /api/v1/customers/{customerId} Update a single customer by Id #
GET /api/v1/customers/{customerId}/addresses Get a list of customer addresses #
POST /api/v1/customers/{customerId}/addresses Create an address for a customer by Id #
PATCH /api/v1/customers/{customerId}/addresses/{addressId} Update an address for a customer #
PUT /api/v1/customers/{customerId}/contract-pricing Create or update the customer contract pricing #
GET /api/v1/customers/{customerId}/product-aliases Get a list of customer product aliases by Id #
POST /api/v1/customers/{customerId}/product-aliases Create a customer product alias by Id #
PUT /api/v1/customers/{customerId}/product-aliases Update a customer product alias by Id #
DELETE /api/v1/customers/{customerId}/product-aliases Delete a single customer product aliases by customer Id #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eci-solutions-customer-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eci-solutions-customer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eci Solutions Customer API
  version: '1.0'
  description: 'Operations tagged Customer across 2 of this provider''s published API definitions: eci-solutions-apar-commerce-openapi.json, eci-solutions-ecommerce-openapi.json. Each path carries the servers of the definition it was published in.'
security:
- Bearer: []
tags:
- name: Customer
paths:
  /api/v1/customers:
    get:
      tags:
      - Customer
      summary: Get a list of customers
      operationId: GetCustomers
      parameters:
      - name: top
        in: query
        description: 'Maximum number of records to return. Default: 100. Max: 100.'
        schema:
          maximum: 100
          minimum: 1
          type: integer
          format: int32
          default: 100
      - name: skip
        in: query
        description: 'The value from which to start taking records. Default: 0.'
        schema:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
          default: 0
      - name: externalCustomerId
        in: query
        description: The External Customer Id by which to search for the customer.
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerResponseListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerResponseListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerResponseListResponse'
    post:
      tags:
      - Customer
      summary: Create a customer
      operationId: CreateCustomer
      requestBody:
        description: The details of Customer by which  we can create the customer with all the validation applied.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/CustomerRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CustomerRequestModel'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
  /api/v1/customers/{id}:
    get:
      tags:
      - Customer
      summary: Get a Customer record by customer id
      operationId: GetCustomerById
      parameters:
      - name: id
        in: path
        description: The Customer Id by which to search for the customer.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
    patch:
      tags:
      - Customer
      summary: Update a customer
      operationId: UpdateCustomer
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      requestBody:
        description: The details of Customer by which  we can update the customer with all the validation applied.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerRequestModel'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
    delete:
      tags:
      - Customer
      summary: Delete a customer by customer id
      operationId: DeleteCustomer
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
  /api/v1/customers/{id}/invoices:
    post:
      tags:
      - Customer
      summary: Create a customer invoice
      operationId: CreateCustomerInvoice
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      requestBody:
        description: The details of Customer Invoice by which we can create the customer invoice with all the validation applied.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerInvoiceRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerInvoiceRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CreateCustomerInvoiceRequestModel'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
  /api/v1/customers/{id}/invoices/{invoiceId}:
    get:
      tags:
      - Customer
      summary: Get a Customer Invoice record
      operationId: GetCustomerInvoiceById
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: invoiceId
        in: path
        description: The Invoice Id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
    patch:
      tags:
      - Customer
      summary: Update a customer invoice
      operationId: UpdateCustomerInvoice
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: invoiceId
        in: path
        description: The Customer Invoice Id
        required: true
        schema:
          type: string
      requestBody:
        description: The details of Customer Invoice by which we can update the customer invoice.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerInvoiceRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerInvoiceRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerInvoiceRequestModel'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
    delete:
      tags:
      - Customer
      summary: Delete a customer invoice by invoice id
      operationId: DeleteCustomerInvoice
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: invoiceId
        in: path
        description: The Customer Invoice Id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
  /api/v1/customers/{id}/invoices/{invoiceId}/upload-file:
    post:
      tags:
      - Customer
      summary: Upload an invoice file
      description: For Nuvei the file must be a PDF.
      operationId: UploadFileToCustomerInvoice
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: invoiceId
        in: path
        description: The Customer Invoice Id
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - File
              type: object
              properties:
                File:
                  type: string
                  description: The data file (e.g., a PDF) to be uploaded.
                  format: binary
            encoding:
              File:
                style: form
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerInvoiceResponse'
  /api/v1/customers/{id}/sales-orders:
    post:
      tags:
      - Customer
      summary: Create a customer sales order
      operationId: CreateCustomerSalesOrder
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      requestBody:
        description: The details of Customer Sales Order by which we can create the customer sales order with all the validation applied.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerSalesOrderRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerSalesOrderRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CreateCustomerSalesOrderRequestModel'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
  /api/v1/customers/{id}/sales-orders/{salesOrderId}:
    get:
      tags:
      - Customer
      summary: Get a Customer Sales Order record
      operationId: GetCustomerSalesOrderById
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: salesOrderId
        in: path
        description: The Sales Order Id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
    patch:
      tags:
      - Customer
      summary: Update a customer sales order
      operationId: UpdateCustomerSalesOrder
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: salesOrderId
        in: path
        description: The Customer Sales Order Id
        required: true
        schema:
          type: string
      requestBody:
        description: The details of Customer Sales Order by which we can update the customer sales order.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerSalesOrderRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerSalesOrderRequestModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerSalesOrderRequestModel'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
    delete:
      tags:
      - Customer
      summary: Delete a customer sales order by sales order id
      operationId: DeleteCustomerSalesOrder
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: salesOrderId
        in: path
        description: The Customer Sales Order Id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
  /api/v1/customers/{id}/sales-orders/{salesOrderId}/upload-file:
    post:
      tags:
      - Customer
      summary: Upload a sales order file
      description: For Nuvei the file must be a PDF.
      operationId: UploadFileToSalesOrders
      parameters:
      - name: id
        in: path
        description: The Customer Id
        required: true
        schema:
          type: string
      - name: salesOrderId
        in: path
        description: The Customer Sales Order Id
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - File
              type: object
              properties:
                File:
                  type: string
                  description: The data file (e.g., a PDF) to be uploaded.
                  format: binary
            encoding:
              File:
                style: form
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerSalesOrderResponse'
  /api/v1/customers/{customerId}:
    get:
      tags:
      - Customer
      summary: Get a single customer by Id
      operationId: GetCustomer
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to search for the customer.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
    patch:
      tags:
      - Customer
      summary: Update a single customer by Id
      operationId: UpdateCustomer
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to update.
        required: true
        schema:
          type: string
      requestBody:
        description: The values with which to update the customer.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerUpdateRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerUpdateRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerUpdateRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerResponse'
  /api/v1/customers/{customerId}/addresses:
    get:
      tags:
      - Customer
      summary: Get a list of customer addresses
      operationId: GetAddresses
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to search for the customer.
        required: true
        schema:
          type: string
      - name: take
        in: query
        description: 'Maximum number of records to return. Default: 100. Max: 100.'
        schema:
          maximum: 100
          minimum: 1
          type: integer
          format: int32
          default: 100
      - name: from
        in: query
        description: 'The value from which to start taking records. Default: 0.'
        schema:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
          default: 0
      - name: addressIds
        in: query
        description: Comma-separated list of one or more Address Ids from the Ecommerce system.
        schema:
          type: string
      - name: type
        in: query
        description: 'Valid values are AllPurpose = 0, Billing = 1, Shipping = 2.

          If no types are specified, all addresses will be returned.'
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerAddressResponseListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerAddressResponseListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerAddressResponseListResponse'
    post:
      tags:
      - Customer
      summary: Create an address for a customer by Id
      operationId: CreateAddress
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to create an address.
        required: true
        schema:
          type: string
      requestBody:
        description: EcommerceAddress
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceAddress'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceAddress'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceAddress'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
  /api/v1/customers/{customerId}/addresses/{addressId}:
    patch:
      tags:
      - Customer
      summary: Update an address for a customer
      operationId: UpdateAddress
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to update an address.
        required: true
        schema:
          type: string
      - name: addressId
        in: path
        description: The unique value by which to find the customer address to update.
        required: true
        schema:
          type: string
      requestBody:
        description: EcommerceUpdateAddressRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateAddressRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateAddressRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateAddressRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceAddressResponse'
  /api/v1/customers/{customerId}/contract-pricing:
    put:
      tags:
      - Customer
      summary: Create or update the customer contract pricing
      operationId: AddUpdateCustomerContractPricing
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to add or update contract pricing.
        required: true
        schema:
          type: string
      requestBody:
        description: EcommerceCustomerContractPricingRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerContractPricingRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerContractPricingRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerContractPricingRequest'
      responses:
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '204':
          description: No Content
  /api/v1/customers/{customerId}/product-aliases:
    get:
      tags:
      - Customer
      summary: Get a list of customer product aliases by Id
      operationId: GetCustomerProductAliasesByCustomerId
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to search for the customer.
        required: true
        schema:
          type: string
      - name: take
        in: query
        description: 'Maximum number of records to return. Default: 100. Max: 100.'
        schema:
          maximum: 100
          minimum: 1
          type: integer
          format: int32
          default: 100
      - name: from
        in: query
        description: The product alias value from which to start taking records.
        schema:
          type: string
      - name: sku
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasesResponseProductAliasesListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasesResponseProductAliasesListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasesResponseProductAliasesListResponse'
    post:
      tags:
      - Customer
      summary: Create a customer product alias by Id
      operationId: CreateCustomerProductAlias
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to create a product alias.
        required: true
        schema:
          type: string
      requestBody:
        description: EcommerceCustomerProductAliasRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerProductAliasRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerProductAliasRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceCustomerProductAliasRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
        '409':
          description: Conflict
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
    put:
      tags:
      - Customer
      summary: Update a customer product alias by Id
      operationId: UpdateCustomerProductAlias
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer to update a product alias.
        required: true
        schema:
          type: string
      requestBody:
        description: EcommerceUpdateCustomerProductAliasRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateCustomerProductAliasRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateCustomerProductAliasRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EcommerceUpdateCustomerProductAliasRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EcommerceCustomerProductAliasResponse'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
    delete:
      tags:
      - Customer
      summary: Delete a single customer product aliases by customer Id
      operationId: DeleteCustomerProductAliases
      parameters:
      - name: customerId
        in: path
        description: The unique value by which to find the customer product aliases to delete.
        required: true
        schema:
          type: string
      - name: alias
        in: query
        description: ''
        schema:
          type: string
      - name: sku
        in: query
        description: ''
        schema:
          type: string
      responses:
        '204':
          description: No Content
components:
  schemas:
    Address:
      type: object
      properties:
        addressLine1:
          type:
          - string
          - 'null'
        addressLine2:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        country:
          maxLength: 2
          minLength: 0
          type:
          - string
          - 'null'
        state:
          maxLength: 2
          minLength: 0
          type:
          - string
          - 'null'
        postalCode:
          type:
          - string
          - 'null'
      additionalProperties: false
    UpdateCustomerSalesOrderRequestModel:
      type: object
      properties:
        salesOrderNo:
          maxLength: 200
          minLength: 0
          type:
          - string
          - 'null'
        date:
          type:
          - string
          - 'null'
          format: date-time
        dueDate:
          type:
          - string
          - 'null'
          format: date-time
        amount:
          type:
          - number
          - 'null'
          format: double
        balance:
          type:
          - number
          - 'null'
          format: double
        taxAmount:
          type:
          - number
          - 'null'
          format: double
        discountAmount:
          type:
          - number
          - 'null'
          format: double
        discountDate:
          type:
          - string
          - 'null'
          format: date-time
        preAuth:
          type:
          - boolean
          - 'null'
      additionalProperties: false
    CustomerResponseListResponse:
      type: object
      properties:
        count:
          type: integer
          format: int32
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CustomerResponse'
      additionalProperties: false
    CustomerInvoiceResponse:
      type: object
      properties:
        invoiceNo:
          type:
          - string
          - 'null'
        date:
          type:
          - string
          - 'null'
          format: date-time
        dueDate:
          type:
          - string
          - 'null'
          format: date-time
        amount:
          type:
          - number
          - 'null'
          format: double
        balance:
          type:
          - number
          - 'null'
          format: double
        status:
          type:
          - string
          - 'null'
        discountAmount:
          type:
          - number
          - 'null'
          format: double
        discountDate:
          type:
          - string
          - 'null'
          format: date-time
        invoiceId:
          type:
          - string
          - 'null'
        customerId:
          type:
          - string
          - 'null'
        externalCustomerId:
          type:
          - string
          - 'null'
        taxAmount:
          type:
          - number
          - 'null'
          format: double
        preAuth:
          type:
          - boolean
          - 'null'
        paymentLinkUri:
          type:
          - string
          - 'null'
      additionalPropert

# --- truncated at 32 KB (50 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/eci-solutions/refs/heads/main/openapi/eci-solutions-customer-api-openapi.yml