PUT account/domains/{domain}/contacts/technical
Updates any fields contained within the contact parameter on the contact.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| domain |
The domain. |
string |
Required |
Body Parameters
A contact.
Contact| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| Organization | string |
None. |
|
| Department | string |
None. |
|
| string |
None. |
||
| Address1 | string |
None. |
|
| Address2 | string |
None. |
|
| City | string |
None. |
|
| Region | string |
None. |
|
| Country | string |
None. |
|
| PostalCode | string |
None. |
|
| PhoneCountry | integer |
None. |
|
| Phone | string |
None. |
|
| FaxCountry | integer |
None. |
|
| Fax | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "Jack",
"LastName": "Smith",
"Organization": "Example Consultant, Inc.",
"Department": "IT",
"Email": "jsmith@exampleconsultant.com",
"Address1": "400 Main St.",
"Address2": "",
"City": "Smalltown",
"Region": "CA",
"Country": "US",
"PostalCode": "90210",
"PhoneCountry": 1,
"Phone": "424-555-8888",
"FaxCountry": null,
"Fax": ""
}
application/x-www-form-urlencoded
Sample:
Data=RegistrarLib.ContactData&FirstName=Jack&LastName=Smith&Organization=Example+Consultant%2c+Inc.&Department=IT&Email=jsmith%40exampleconsultant.com&Address1=400+Main+St.&Address2=&City=Smalltown&Region=CA&Country=US&PostalCode=90210&PhoneCountry=1&Phone=424-555-8888&FaxCountry=&Fax=
Response Information
Resource Description
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:
{
"FirstName": "Jack",
"LastName": "Smith",
"Organization": "Example Consultant, Inc.",
"Department": "IT",
"Email": "jsmith@exampleconsultant.com",
"Address1": "400 Main St.",
"Address2": "",
"City": "Smalltown",
"Region": "CA",
"Country": "US",
"PostalCode": "90210",
"PhoneCountry": 1,
"Phone": "424-555-8888",
"FaxCountry": null,
"Fax": ""
}
