POST api/Domain/Availability
Determin availability for a list of domains
Request Information
URI Parameters
None.
Body Parameters
Domain list
Collection of stringRequest Formats
application/json, text/json
[ "sample string 1", "sample string 2" ]
application/xml, text/xml
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfstring>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
A list of DomainAvailability objects with stautus and domain name
Return codes
200 - ok
500 - internal server error
Name | Description | Type | Additional information |
---|---|---|---|
Name |
Domain name - transformed if necessary |
string |
None. |
Status |
Status of check |
string |
None. |
Notices |
Comma seperated string of notices |
string |
None. |
AvailabilityResponse |
Availablity respose object |
AvailabilityResponse |
None. |
Catchable |
When domain is UnAvailableInDropZone, this indiactes if the domain is catchable |
boolean |
None. |
CatchableTld |
When domain is UnAvailableInDropZone, this indiactes if the tld is catchable |
boolean |
None. |
Error |
Error message in case of failure |
string |
None. |
Forbidden |
Domain is forbidden |
boolean |
None. |
Reserved |
Domain is reserved |
boolean |
None. |
ForbiddenReason |
Reason when domain is forbidden |
string |
None. |
ReservedReason |
Reason when domain is reserved |
string |
None. |
Response Formats
application/json
{ "code": -4, "notices": 1 }
text/json
[ { "Forbidden": true, "Reserved": true, "ForbiddenReason": "sample string 3", "ReservedReason": "sample string 4", "Name": "sample string 1", "Status": "sample string 2", "Notices": "sample string 3", "AvailabilityResponse": { "code": 0, "notices": 1 }, "Catchable": true, "CatchableTld": true, "Error": "sample string 6" }, { "Forbidden": true, "Reserved": true, "ForbiddenReason": "sample string 3", "ReservedReason": "sample string 4", "Name": "sample string 1", "Status": "sample string 2", "Notices": "sample string 3", "AvailabilityResponse": { "code": 0, "notices": 1 }, "Catchable": true, "CatchableTld": true, "Error": "sample string 6" } ]
application/xml, text/xml
<ArrayOfDomainAvailability xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Namebay.Rest.Api.Models.Domain"> <DomainAvailability> <AvailabilityResponse> <code>None</code> <notices>none</notices> </AvailabilityResponse> <Catchable>true</Catchable> <CatchableTld>true</CatchableTld> <Error>sample string 6</Error> <Forbidden>true</Forbidden> <ForbiddenReason>sample string 3</ForbiddenReason> <Name>sample string 1</Name> <Notices>sample string 3</Notices> <Reserved>true</Reserved> <ReservedReason>sample string 4</ReservedReason> <Status>sample string 2</Status> </DomainAvailability> <DomainAvailability> <AvailabilityResponse> <code>None</code> <notices>none</notices> </AvailabilityResponse> <Catchable>true</Catchable> <CatchableTld>true</CatchableTld> <Error>sample string 6</Error> <Forbidden>true</Forbidden> <ForbiddenReason>sample string 3</ForbiddenReason> <Name>sample string 1</Name> <Notices>sample string 3</Notices> <Reserved>true</Reserved> <ReservedReason>sample string 4</ReservedReason> <Status>sample string 2</Status> </DomainAvailability> </ArrayOfDomainAvailability>