Get person¶
Get the details of a person, identified by its id.
Parameters¶
id string
The unique identifier of the person that you want to retrieve.
Response¶
Type: application/json
Schema: PersonInfoResponseDto
success boolean
Indicates whether the request completed successfully.
error ErrorDto
id string
contactId string
firstName string
middleName string
lastName string
socialSecurityNumber string
Person contact social security number
description string
primaryPhoneNumber string
Person contact primary phone number
primaryEmail string
Person contact primary email address
image array [ string(byte) ]
address AddressDto
personalNetWorth number(double)
personalLiquidity number(double)
The total liquidity of the person
personalDSCR number(double)
Person DSCR
personalCashFlowAfterDebtService number(double)
Person cash flow after debt service
personDebtRatio number(double)
Response
{
"success": true,
"error": {
"target": "string",
"code": "Duplicated",
"message": "string",
"details": ["string"]
},
"id": "string",
"contactId": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string",
"socialSecurityNumber": "string",
"description": "string",
"primaryPhoneNumber": "string",
"primaryEmail": "string",
"image": ["string"],
"address": {
"fullAddress": "string",
"placeId": "string",
"geoLocation": {
"lat": 0,
"lng": 0
},
"zipCode": "string",
"number": 0,
"street": "string",
"city": "string",
"county": "string",
"state": "string",
"country": "string",
"additionalFreeText": "string"
},
"personalNetWorth": 0,
"personalLiquidity": 0,
"personalDSCR": 0,
"personalCashFlowAfterDebtService": 0,
"personDebtRatio": 0
}