hosting

GET /v1/sites/{siteId}/cdn/swap

The site's most recent CDN move, and what it is waiting for.

All hosting endpoints

All developer docs

Authentication

Send an API key as a bearer token. The key must carry the hosting.cdn.manage permission; a key without it is refused with 403, not 404.

This endpoint takes no organisation id. Your key already identifies the organisation it belongs to, and the response is scoped to it.

Try it

Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.

curl -X GET https://api.zinndigital.com/v1/sites/{siteId}/cdn/swap \
  -H "Authorization: Bearer zdk_live_…"

Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console

Details

The latest CDN move for this site, or null if there has never been one — not a 404, because "this site has never been moved" is a normal state and a 404 could not be told apart from "no such site". ⭐ The field to render is nameservers. While status is awaiting_delegation the move is complete on our side and waiting on your registrar: both edges serve the site throughout, and nothing is removed until the new nameservers are observed answering. Requires hosting.cdn.manage.

Parameters

NameTypeRequiredWhat it is
siteId (path)UuidYesSite ID (UUIDv7).

Response

NameTypeRequiredWhat it is
dataCdnSwap | nullYes

Errors this endpoint can return

401 · 403 · 404 · 429