> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vellaro.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Test Connection

> Live ping + warehouse fetch. Works even while the module is disabled —
that is the point: you test BEFORE flipping the switch.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json post /api/v1/admin/nextera/settings/test
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/admin/nextera/settings/test:
    post:
      tags:
        - admin:nextera
      summary: Test Connection
      description: |-
        Live ping + warehouse fetch. Works even while the module is disabled —
        that is the point: you test BEFORE flipping the switch.
      operationId: test_connection_api_v1_admin_nextera_settings_test_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_NexteraTestOut_'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_NexteraTestOut_:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/NexteraTestOut'
            - type: 'null'
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[NexteraTestOut]
    NexteraTestOut:
      properties:
        ok:
          type: boolean
          title: Ok
        message:
          type: string
          title: Message
        client_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Name
        key_prefix:
          anyOf:
            - type: string
            - type: 'null'
          title: Key Prefix
        latency_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Latency Ms
        warehouses:
          anyOf:
            - type: integer
            - type: 'null'
          title: Warehouses
      type: object
      required:
        - ok
        - message
      title: NexteraTestOut
      description: Result of POST /settings/test — a live ping + warehouse fetch.
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````