PUT account/domains/{domain}/contacts/all

Updates all fields on all contacts to match this contact

Request Information

URI Parameters

NameDescriptionTypeAdditional information
domain

The domain.

string

Required

Body Parameters

A contact.

Contact
NameDescriptionTypeAdditional information
FirstName

string

None.

LastName

string

None.

Organization

string

None.

Department

string

None.

Email

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
NameDescriptionTypeAdditional 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": ""
}