Domains-domainName-transfer:GET
(Difference between revisions)
Mike.robski (Talk | contribs) m (1 revision: Release 91) |
(→Parameters) |
||
Line 24: | Line 24: | ||
"code": 2106, | "code": 2106, | ||
"description": "Domain is not yet eligible for transfer, same franchise" | "description": "Domain is not yet eligible for transfer, same franchise" | ||
+ | "adminEmail": "{adminEmail}", | ||
} | } | ||
</nowiki> | </nowiki> | ||
Line 45: | Line 46: | ||
; description - ''string'' | ; description - ''string'' | ||
: refer to the above code for the description | : refer to the above code for the description | ||
+ | |||
+ | ; adminEmail - ''string'' | ||
+ | : Whois admin email, if whois is available | ||
== See also == | == See also == |
Revision as of 15:07, 11 March 2014
GET /domains/{domainName}/transfer
Performs domain transferability check.
Contents |
Request
GET /domains/{domainName}/transfer
Parameters
- domainName - string
- The valid domain name to check including only the labels that are appropriate for the valid registration of a domain name at the registry. IE: example.com is a valid domain name that could be or is already registered at the registry. Whereas http://www.example.com or www.example.com are not. If the domain name is invalid, or is otherwise not registerable such as for a non-existent or non-supported TLD, an error will be returned. Domain names are case insensitive.
Response
Status Code
An HTTP response code value indicating ancillary information about the domain availability. See notes below for the meaning of the response code. Check the 'available' value to determine if the given domain name is available at the registry.
- 200 OK
- transferability check ran ok
Response Body
{ "transferrable": "{transferrable}", "name": "{domainName}", "code": 2106, "description": "Domain is not yet eligible for transfer, same franchise" "adminEmail": "{adminEmail}", }
Parameters
- transferrable - boolean
- domainName - string
- code - string
- code holds the exact value of the transferability check
- 2300 = Domain transfer already in progress
- 2302 = Domain is already registered with this registrar
- 2303 = Domain is not registered
- 2304 = Domain status prohibits operation
- 2202 = Invalid authorization information
- 2106 = Domain is not yet eligible for transfer
- 2102 = Transfer not supported for this TLD
- 3100 = whois error
- description - string
- refer to the above code for the description
- adminEmail - string
- Whois admin email, if whois is available
See also