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

# Enable Destination

> Re-enable a disabled destination on your PCI Proxy allowlist so the forward proxy can use it again.

Re-enables a disabled destination so the [forward proxy](/reference/pci-proxy/invoke-forward-proxy) will use it again. Only `ENABLED` destinations are reachable — a request to a `DISABLED` host is rejected with `403 DESTINATION_NOT_ALLOWED`. See the [Destination Allowlist guide](/docs/security-and-compliance/pci-proxy/allowlist).


## OpenAPI

````yaml openapi/pci-proxy/manage-destinations.json POST /pci-proxy/destinations/{id}/enable
openapi: 3.1.0
info:
  title: pci-proxy-manage-destinations
  version: 1.0.0
servers:
  - url: https://api-sandbox.y.uno/v1
security:
  - sec0: []
    sec1: []
paths:
  /pci-proxy/destinations/{id}/enable:
    post:
      summary: Enable Destination
      description: >-
        Re-enables a disabled destination. Only `ENABLED` destinations are used
        by the forward path.
      operationId: enablePciProxyDestination
      parameters:
        - name: id
          in: path
          required: true
          description: The `id` (UUID) of the destination to enable.
          schema:
            type: string
            format: uuid
            example: d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4
      responses:
        '200':
          description: The destination was enabled; the updated object is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Destination'
        '400':
          $ref: '#/components/responses/InvalidId'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/DestinationNotFound'
components:
  schemas:
    Destination:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: >-
            Unique identifier of the destination. Use it to remove the
            destination.
          example: d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4
        account_id:
          type: string
          nullable: true
          description: >-
            The account this destination is scoped to, or `null` when it applies
            to the whole organization.
          example: null
        hostname:
          type: string
          description: The registered hostname.
          example: api.example-processor.com
        status:
          type: string
          enum:
            - ENABLED
            - DISABLED
          description: >-
            Whether the destination is active. Only ENABLED destinations are
            used by the forward path.
          example: ENABLED
        purpose:
          type: string
          description: The label you provided when registering the destination.
          example: Direct acquiring — Processor X
        created_at:
          type: string
          format: date-time
          description: When the destination was registered.
          example: '2026-07-09T13:05:36Z'
        updated_at:
          type: string
          format: date-time
          description: When the destination was last changed.
          example: '2026-07-09T13:05:36Z'
    DestinationError:
      type: object
      properties:
        code:
          type: string
          description: Machine-readable error code.
          enum:
            - NOT_AUTHENTICATED
            - AuthenticationFail
            - INVALID_REQUEST
            - INVALID_HOSTNAME
            - INVALID_ACCOUNT_ID
            - DESTINATION_EXISTS
            - NOT_FOUND
            - INTERNAL_ERROR
        messages:
          type: array
          items:
            type: string
  responses:
    InvalidId:
      description: The `id` path parameter is not a valid UUID.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DestinationError'
          examples:
            Invalid id:
              value:
                code: INVALID_REQUEST
                messages:
                  - invalid id
    Unauthorized:
      description: Authentication failed. Missing or invalid API credentials.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DestinationError'
          examples:
            Not authenticated:
              value:
                code: NOT_AUTHENTICATED
                messages:
                  - not authenticated
    DestinationNotFound:
      description: No destination with that `id` is registered for your scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DestinationError'
          examples:
            Not found:
              value:
                code: NOT_FOUND
                messages:
                  - destination not found
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: public-api-key
      x-default: <Your public-api-key>
    sec1:
      type: apiKey
      in: header
      name: private-secret-key
      x-default: <Your private-secret-key>

````