domains

POST /v1/domains/transfer/preflight

Check and price a bulk transfer-in.

Todos los endpoints de domains

Autenticación

Envía una clave de API como token de portador. La clave debe tener el permiso sites.view; una clave que no lo tenga se rechazará con un código 403, no 404.

Este endpoint no requiere ningún id de organización. Su clave ya identifica la organización a la que pertenece, y la respuesta está delimitada a ella.

Pruébalo

Reemplaza cualquier elemento entre corchetes angulares por tus propios valores, y el marcador de posición key con una clave de tu panel de control.

curl -X POST https://api.zinndigital.com/v1/domains/transfer/preflight \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "domains": <string[]> }'

¿Has iniciado sesión? La consola de la API en tu panel de control rellena el ID de tu organización real y tu propia clave, y ejecuta la solicitud contra la API en vivo para que puedas ver la respuesta real. Abre este endpoint en la consola de la API

Detalles

Takes a list of domain names and answers, per name, whether it can be transferred to us and what that costs — the check half of the bulk transfer-in wizard (`docs/31` §5.3(e)). A `POST` because the list would not survive a query string at this size, not because it changes anything: it is idempotent and writes nothing. Bounded to 50 names per request, so one paste cannot fan an unbounded burst at the registrar; a longer list is a `422` asking the customer to split it rather than a silent truncation. Every price resolves through the TLD catalogue — a client never invents one. Requires `sites.view`.

Cuerpo de la solicitud

NombreTipoObligatorio¿Qué es esto?
domainsstring[]

Respuesta

NombreTipoObligatorio¿Qué es esto?
resultsTransferCandidate[]

Errores que este endpoint puede devolver

401 · 403 · 422 · 429