POST account/domains/{domain}/hostrecords/a
Creates an "A" record on the domain.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| domain |
a domain name |
string |
Required |
Body Parameters
The record.
ARecord| Name | Description | Type | Additional information |
|---|---|---|---|
| Subdomain | string |
None. |
|
| IPV4Address | string |
None. |
|
| RecordId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Subdomain": "*",
"IPV4Address": "192.0.43.10",
"RecordId": 1112
}
application/x-www-form-urlencoded
Sample:
Subdomain=*&IPV4Address=192.0.43.10&RecordId=1112
Response Information
Resource Description
HTTP 201 upon success or an appropriate HTTP error code.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Subdomain": "*",
"IPV4Address": "192.0.43.10",
"RecordId": 1112
}
