GET v1/Customers/{customerID}/PersonalInformation
Get Personal Information section for a customer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerID |
Id of the customer |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Personal Information
PersonalInformationDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonID |
Id of the person |
integer |
None. |
| FirstName |
First name |
string |
None. |
| MiddleName |
Middle name |
string |
None. |
| LastName |
Last name |
string |
None. |
| Salutation |
Salutation |
string |
None. |
| Gender |
Gender |
string |
None. |
| PreferredLanguageCode |
Code of the preferred language |
integer |
None. |
| MaritalStatusID |
Id of the marital status |
byte |
None. |
| MaritalStatus |
Marital status |
string |
None. |
| DOB |
Date of birth |
date |
None. |
| LicenseStateCode |
License state code |
string |
None. |
| State |
State |
string |
None. |
| DriverLicenseNo |
DriverLicenseNo |
string |
None. |
| LicenseCountry |
License country |
string |
None. |
| OccupationID |
Id of the occupation |
integer |
None. |
| Occupation |
Occupation |
string |
None. |
| IndustryID |
Id of the industry |
integer |
None. |
| Industry |
Industry |
string |
None. |
| ResidenceTypeID |
Id of the residence type |
byte |
None. |
| ResidenceType |
Residence type |
string |
None. |
| HomeownerTypeID |
Id of the homeowner type |
byte |
None. |
| HomeOwnerType |
Homeowner type |
string |
None. |
| Status |
Status of the person |
string |
None. |
| Language |
Language of the person |
string |
None. |
| Nickname |
Nickname of the person |
string |
None. |
| SSN |
SSN |
string |
None. |
| DateOfBirthString |
Date of birth (String) |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PersonID": 1,
"FirstName": "sample string 2",
"MiddleName": "sample string 3",
"LastName": "sample string 4",
"Salutation": "sample string 5",
"Gender": "sample string 6",
"PreferredLanguageCode": 1,
"MaritalStatusID": 64,
"MaritalStatus": "sample string 7",
"DOB": "2026-08-25T17:25:45.7968526+00:00",
"LicenseStateCode": "sample string 8",
"State": "sample string 9",
"DriverLicenseNo": "sample string 10",
"LicenseCountry": "sample string 11",
"OccupationID": 1,
"Occupation": "sample string 12",
"IndustryID": 1,
"Industry": "sample string 13",
"ResidenceTypeID": 64,
"ResidenceType": "sample string 14",
"HomeownerTypeID": 64,
"HomeOwnerType": "sample string 15",
"Status": "sample string 16",
"Language": "sample string 17",
"Nickname": "sample string 18",
"SSN": "sample string 19",
"DateOfBirthString": "sample string 20"
}
application/xml, text/xml
Sample:
<PersonalInformationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts"> <DOB>2026-08-25T17:25:45.7968526+00:00</DOB> <DateOfBirthString>sample string 20</DateOfBirthString> <DriverLicenseNo>sample string 10</DriverLicenseNo> <FirstName>sample string 2</FirstName> <Gender>sample string 6</Gender> <HomeOwnerType>sample string 15</HomeOwnerType> <HomeownerTypeID>64</HomeownerTypeID> <Industry>sample string 13</Industry> <IndustryID>1</IndustryID> <Language>sample string 17</Language> <LastName>sample string 4</LastName> <LicenseCountry>sample string 11</LicenseCountry> <LicenseStateCode>sample string 8</LicenseStateCode> <MaritalStatus>sample string 7</MaritalStatus> <MaritalStatusID>64</MaritalStatusID> <MiddleName>sample string 3</MiddleName> <Nickname>sample string 18</Nickname> <Occupation>sample string 12</Occupation> <OccupationID>1</OccupationID> <PersonID>1</PersonID> <PreferredLanguageCode>1</PreferredLanguageCode> <ResidenceType>sample string 14</ResidenceType> <ResidenceTypeID>64</ResidenceTypeID> <SSN>sample string 19</SSN> <Salutation>sample string 5</Salutation> <State>sample string 9</State> <Status>sample string 16</Status> </PersonalInformationDTO>