v1

latestOpenAPI 3.0.02026-07-26167441.9 MB

Disable Destination

Turns a destination off without removing it — the record and its audit history are kept, but the forward path rejects it with 403 DESTINATION_NOT_ALLOWED until it is enabled again.

post/pci-proxy/destinations/{id}/disable

Path parameters

idstring uuid required
Example:d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4

The id (UUID) of the destination to disable.

Response

The destination was disabled; the updated object is returned.

idstring uuid

Unique identifier of the destination. Use it to remove the destination.

account_idstring nullable

The account this destination is scoped to, or null when it applies to the whole organization.

hostnamestring

The registered hostname.

status'ENABLED' | 'DISABLED'

Whether the destination is active. Only ENABLED destinations are used by the forward path.

purposestring

The label you provided when registering the destination.

created_atstring date-time

When the destination was registered.

updated_atstring date-time

When the destination was last changed.

Example response

{
  "id": "d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4",
  "hostname": "api.example-processor.com",
  "status": "ENABLED",
  "purpose": "Direct acquiring — Processor X",
  "created_at": "2026-07-09T13:05:36Z",
  "updated_at": "2026-07-09T13:05:36Z"
}