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