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

# Validate all connections

> Validates all provider connections owned by the authenticated user sequentially. Returns per-connection results with latency and error details.




## OpenAPI

````yaml /openapi.yaml post /provider-connections/validate-all
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /provider-connections/validate-all:
    post:
      summary: Validate all connections
      description: >
        Validates all provider connections owned by the authenticated user
        sequentially. Returns per-connection results with latency and error
        details.
      responses:
        '200':
          description: Validation results
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        is_valid:
                          type: boolean
                        validation_latency_ms:
                          type: integer
                        error:
                          type: string
                          description: Error message if validation failed
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````