GET api/Domain/{handle}?user={user}
Return domain with given handle
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
handle |
Domain handle |
string |
Required |
user |
Optional user handle - if empty logged in user will be used |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
A domain object on success
Collection of errors on failure
Return codes
200 - ok
300 - ambiguous
400 - bad request
401 - unauthorized
404 - not found
500 - internal server error
Name | Description | Type | Additional information |
---|---|---|---|
Id |
Domain id |
decimal number |
None. |
Handle |
Domain handle |
string |
None. |
Name |
Domain name |
string |
None. |
Status | string |
None. |
|
Created |
Date created |
date |
None. |
Expires |
Date expires |
date |
None. |
Renewal |
Renewal date |
date |
None. |
TldId | integer |
None. |
|
TldName |
Top level domain name |
string |
None. |
Registrar | string |
None. |
|
NameCode |
Name code - only available to owner or reseller |
string |
None. |
AuthInfo |
Auth code - only available to owner or reseller |
string |
None. |
AuthInfoExpireson |
Date that authinfo expires on (eu only) |
date |
None. |
HasAnonymousWhois |
Flag to make whis anonymous |
boolean |
None. |
AutoRenew |
Has auto renew - only available to owner or reseller |
boolean |
None. |
CurrentProductID |
The id of the product currently associated to this domain (may differ from the original product) |
integer |
None. |
Response Formats
application/json, text/json
{ "Id": 1.0, "Handle": "sample string 2", "Name": "sample string 3", "Status": "sample string 4", "Created": "2025-04-04T00:07:57.1172404+02:00", "Expires": "2025-04-04T00:07:57.1172404+02:00", "Renewal": "2025-04-04T00:07:57.1172404+02:00", "TldId": 8, "TldName": "sample string 9", "Registrar": "sample string 10", "NameCode": "sample string 11", "AuthInfo": "sample string 12", "AuthInfoExpireson": "2025-04-04T00:07:57.1172404+02:00", "HasAnonymousWhois": true, "AutoRenew": true, "CurrentProductID": 14 }
application/xml, text/xml
<Domain xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Namebay.Rest.Api.Models.Domain"> <AuthInfo>sample string 12</AuthInfo> <AuthInfoExpireson>2025-04-04T00:07:57.1172404+02:00</AuthInfoExpireson> <AutoRenew>true</AutoRenew> <Created>2025-04-04T00:07:57.1172404+02:00</Created> <CurrentProductID>14</CurrentProductID> <Expires>2025-04-04T00:07:57.1172404+02:00</Expires> <Handle>sample string 2</Handle> <HasAnonymousWhois>true</HasAnonymousWhois> <Id>1</Id> <Name>sample string 3</Name> <NameCode>sample string 11</NameCode> <Registrar>sample string 10</Registrar> <Renewal>2025-04-04T00:07:57.1172404+02:00</Renewal> <Status>sample string 4</Status> <TldId>8</TldId> <TldName>sample string 9</TldName> </Domain>