---
title: "Test Gateway Configuration"
url: "https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598/operations/GatewaysController_testConfiguration"
---

> Full API specification: https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598.md

# Test Gateway Configuration

`POST` `/tenants/gateways/{id}/test-configuration`

Operation ID: `GatewaysController_testConfiguration`

Validates the gateway configuration by performing connectivity tests and verifying that all settings are properly configured. This helps identify configuration issues before deployment.

## Path parameters

- `id` (string, uuid, required) - The unique identifier (UUID) of the gateway

## Responses

- `200`

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Cipherscale API
  version: "1.0"
servers:
  - url: https://public-api.cipherscale.com/qa
    description: Cipherscale Public API Server
paths:
  /tenants/gateways/{id}/test-configuration:
    post:
      operationId: GatewaysController_testConfiguration
      summary: Test Gateway Configuration
      description: Validates the gateway configuration by performing connectivity
        tests and verifying that all settings are properly configured. This
        helps identify configuration issues before deployment.
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the gateway
          schema:
            format: uuid
            type: string
      responses:
        "200":
          description: ""
          content:
            application/json:
              schema:
                type: object
      tags:
        - Gateways
      security:
        - ApiKeyAuth: []
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
