Person.Get
Gets information about a person from the database. HTTP Operation HTTP GET URL https://www.mblast.com/api/rest/v.01/person.get.aspx Parameters See the documentation for creating REST queries.
Sample Request URL: https://www.mblast.com/api/rest/v.01/person.get.aspx?un=demo&pw=demo&recordID=12345 Response Elements Response are returned in an XML document.
Example response The following is an example of the response returned by the Person.Get method.
<?xml version="1.0" encoding="UTF-8"?>
<response>
<person>
<recordID>12345</recordID>
<firstname>Danny</firstname>
<lastname>Briere</lastname>
<company>12345</company>
<jobtitle>Chief Executive Officer</jobtitle>
<email>dbriere@telechoice.com</email>
<address1>803 Warrenville Road</address1>
<city>Mansfield Center</city>
<stateprovince>CT</stateprovince>
<postalcode>06250</postalcode>
<country>USA</country>
<phone>+1 (860) 429-0100</phone>
<fax>+1 (860) 429-0200</fax>
<mobile>+1 (860) 614-3403</mobile>
<bio>
Danny Briere is one of the original modern-day
telecom strategists...
</bio>
</person>
</response>
Errors Person.Get returns the standard errors. There are no errors specific to this method. |