Transfers

PUT /v1/domains/{domain}/transfers

Create a transfer

To transfer a domain from checkdomain to any other domain provider you need to set up your domain first by issuing this command.

Example
$ curl --header "Authorization: Bearer {token}" \
       --header "Accept: application/json" \
       --request PUT \
       https://api.checkdomain.de/v1/domains/{domain}/transfers
Response
HTTP/1.1 204 No Content
Requirements
Name Type Required Description
domain integer (\d+) Domain identifier
Status-Codes
Code Description
204 No Content
404 Not found
406 Not acceptable
500 Something on our end went wrong
DELETE /v1/domains/{domain}/transfers

Revoke a transfer

If you wish to stay with your domain at checkdomain you can also revoke any existing domain transfer by issuing this command.

Example
$ curl --header "Authorization: Bearer {token}" \
       --header "Accept: application/json" \
       --request DELETE \
       https://api.checkdomain.de/v1/domains/{domain}/transfers
Response
HTTP/1.1 204 No Content
Requirements
Name Type Required Description
domain integer (\d+) Domain identifier
Status-Codes
Code Description
204 No Content
404 Not found
406 Not acceptable
500 Something on our end went wrong