using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"ContactId\": 123,\n \"PersonName\": \"<string>\",\n \"PhoneNumbers\": [\n \"<string>\"\n ],\n \"Emails\": [\n \"<string>\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
ContactId: 123,
PersonName: '<string>',
PhoneNumbers: ['<string>'],
Emails: ['<string>']
})
};
fetch('http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ContactId' => 123,
'PersonName' => '<string>',
'PhoneNumbers' => [
'<string>'
],
'Emails' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo"
payload = {
"ContactId": 123,
"PersonName": "<string>",
"PhoneNumbers": ["<string>"],
"Emails": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
ContactId: 123,
PersonName: '<string>',
PhoneNumbers: ['<string>'],
Emails: ['<string>']
})
};
fetch('http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Person": {
"PersonId": 123,
"Firstname": "<string>",
"MiddleName": "<string>",
"Lastname": "<string>",
"Mrmrs": "<string>",
"Title": "<string>",
"UpdatedDate": "2023-11-07T05:31:56Z",
"CreatedDate": "2023-11-07T05:31:56Z",
"BirthDate": "2023-11-07T05:31:56Z",
"CreatedBy": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Emails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Description": "<string>",
"IsAssociate": true,
"PrivatePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Faxes": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"MobilePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"OfficePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"OtherPhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Position": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"UpdatedBy": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Contact": {
"ContactId": 123,
"Name": "<string>",
"OrgNr": "<string>",
"Department": "<string>",
"URL": "<string>",
"City": "<string>",
"DirectPhone": "<string>",
"AssociateId": 123,
"CountryId": 123,
"EmailAddress": "<string>",
"Kananame": "<string>",
"EmailAddressName": "<string>",
"URLName": "<string>",
"AssociateFullName": "<string>",
"BusinessName": "<string>",
"CategoryName": "<string>",
"CountryName": "<string>",
"Address": {
"Wgs84Latitude": 123,
"Wgs84Longitude": 123,
"LocalizedAddress": [
[
{
"Name": "<string>",
"Value": "<string>",
"Tooltip": "<string>",
"Label": "<string>",
"ValueLength": 123,
"AddressType": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
]
],
"Street": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Postal": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Formatted": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"FormattedAddress": "<string>",
"FullName": "<string>",
"IsOwnerContact": true,
"ActiveErpLinks": 123,
"Number1": "<string>",
"Number2": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Country": {
"CountryId": 123,
"Name": "<string>",
"CurrencyId": 123,
"EnglishName": "<string>",
"TwoLetterISOCountry": "<string>",
"ThreeLetterISOCountry": "<string>",
"ImageDescription": "<string>",
"OrgNrText": "<string>",
"InterAreaPrefix": "<string>",
"DialInPrefix": "<string>",
"ZipPrefix": "<string>",
"DomainName": "<string>",
"AddressLayoutId": 123,
"DomesticAddressLayoutId": 123,
"ForeignAddressLayoutId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Deleted": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Interests": [
{
"Id": 123,
"Name": "<string>",
"ToolTip": "<string>",
"Deleted": true,
"Rank": 123,
"Type": "<string>",
"ColorBlock": 123,
"IconHint": "<string>",
"Selected": true,
"LastChanged": "2023-11-07T05:31:56Z",
"ChildItems": "<array>",
"ExtraInfo": "<string>",
"StyleHint": "<string>",
"Hidden": true,
"FullName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"PersonNumber": "<string>",
"FullName": "<string>",
"NoMailing": true,
"UsePersonAddress": true,
"Retired": true,
"Urls": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"FormalName": "<string>",
"Address": {
"Wgs84Latitude": 123,
"Wgs84Longitude": 123,
"LocalizedAddress": [
[
{
"Name": "<string>",
"Value": "<string>",
"Tooltip": "<string>",
"Label": "<string>",
"ValueLength": 123,
"AddressType": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
]
],
"Street": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Postal": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Formatted": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Post3": "<string>",
"Post2": "<string>",
"Post1": "<string>",
"Kanalname": "<string>",
"Kanafname": "<string>",
"CorrespondingAssociate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Category": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"CategoryGroup": "Unknown",
"EnableLeadStatus": true,
"Rank": 123,
"Deleted": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Business": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Associate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Salutation": "<string>",
"ActiveInterests": 123,
"SupportAssociate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TicketPriority": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"CustomerLanguage": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"DbiAgentId": 123,
"DbiKey": "<string>",
"DbiLastModified": "2023-11-07T05:31:56Z",
"DbiLastSyncronized": "2023-11-07T05:31:56Z",
"SentInfo": 123,
"ShowContactTickets": 123,
"UserInfo": {
"Deleted": true,
"UserInfoId": 123,
"UserName": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"UserGroupId": 123,
"EjUserId": 123,
"UserType": "Unknown",
"GrantedLicenses": [
"<string>"
],
"CanLogon": true,
"RoleName": "<string>",
"RoleTooltip": "<string>",
"UserGroupName": "<string>",
"UserGroupTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChatEmails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"InternetPhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Source": 123,
"ActiveErpLinks": 123,
"ShipmentTypes": [
{
"Id": 123,
"Name": "<string>",
"ToolTip": "<string>",
"Deleted": true,
"Rank": 123,
"Type": "<string>",
"ColorBlock": 123,
"IconHint": "<string>",
"Selected": true,
"LastChanged": "2023-11-07T05:31:56Z",
"ChildItems": "<array>",
"ExtraInfo": "<string>",
"StyleHint": "<string>",
"Hidden": true,
"FullName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Consents": [
{
"ConsentPersonId": 123,
"Comment": "<string>",
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"LegalBaseId": 123,
"LegalBaseKey": "<string>",
"LegalBaseName": "<string>",
"ConsentPurposeId": 123,
"ConsentPurposeKey": "<string>",
"ConsentPurposeName": "<string>",
"ConsentSourceId": 123,
"ConsentSourceKey": "<string>",
"ConsentSourceName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"BounceEmails": [
"<string>"
],
"ActiveStatusMonitorId": 123,
"CreatedByFormId": 123,
"UtmParameters": {
"FormName": "<string>",
"FirsttouchSource": "<string>",
"FirsttouchMedium": "<string>",
"FirsttouchCampaign": "<string>",
"FirsttouchTerm": "<string>",
"FirsttouchContent": "<string>",
"FirsttouchReferrerDomain": "<string>",
"Source": "<string>",
"Medium": "<string>",
"Campaign": "<string>",
"Term": "<string>",
"Content": "<string>",
"ReferrerDomain": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"LeadstatusId": 123,
"Leadstatus": "<string>",
"UserDefinedFields": {},
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"PersonCreated": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Resolve Person From Info
Get a person from the provided information.
If the person does not exist, it will be created on demand. NsApiSlow threshold: 2000 ms.
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"ContactId\": 123,\n \"PersonName\": \"<string>\",\n \"PhoneNumbers\": [\n \"<string>\"\n ],\n \"Emails\": [\n \"<string>\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
ContactId: 123,
PersonName: '<string>',
PhoneNumbers: ['<string>'],
Emails: ['<string>']
})
};
fetch('http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ContactId' => 123,
'PersonName' => '<string>',
'PhoneNumbers' => [
'<string>'
],
'Emails' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo"
payload = {
"ContactId": 123,
"PersonName": "<string>",
"PhoneNumbers": ["<string>"],
"Emails": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
ContactId: 123,
PersonName: '<string>',
PhoneNumbers: ['<string>'],
Emails: ['<string>']
})
};
fetch('http://localhost:56350/api/v1/Agents/Person/ResolvePersonFromInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Person": {
"PersonId": 123,
"Firstname": "<string>",
"MiddleName": "<string>",
"Lastname": "<string>",
"Mrmrs": "<string>",
"Title": "<string>",
"UpdatedDate": "2023-11-07T05:31:56Z",
"CreatedDate": "2023-11-07T05:31:56Z",
"BirthDate": "2023-11-07T05:31:56Z",
"CreatedBy": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Emails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Description": "<string>",
"IsAssociate": true,
"PrivatePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Faxes": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"MobilePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"OfficePhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"OtherPhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Position": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"UpdatedBy": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Contact": {
"ContactId": 123,
"Name": "<string>",
"OrgNr": "<string>",
"Department": "<string>",
"URL": "<string>",
"City": "<string>",
"DirectPhone": "<string>",
"AssociateId": 123,
"CountryId": 123,
"EmailAddress": "<string>",
"Kananame": "<string>",
"EmailAddressName": "<string>",
"URLName": "<string>",
"AssociateFullName": "<string>",
"BusinessName": "<string>",
"CategoryName": "<string>",
"CountryName": "<string>",
"Address": {
"Wgs84Latitude": 123,
"Wgs84Longitude": 123,
"LocalizedAddress": [
[
{
"Name": "<string>",
"Value": "<string>",
"Tooltip": "<string>",
"Label": "<string>",
"ValueLength": 123,
"AddressType": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
]
],
"Street": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Postal": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Formatted": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"FormattedAddress": "<string>",
"FullName": "<string>",
"IsOwnerContact": true,
"ActiveErpLinks": 123,
"Number1": "<string>",
"Number2": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Country": {
"CountryId": 123,
"Name": "<string>",
"CurrencyId": 123,
"EnglishName": "<string>",
"TwoLetterISOCountry": "<string>",
"ThreeLetterISOCountry": "<string>",
"ImageDescription": "<string>",
"OrgNrText": "<string>",
"InterAreaPrefix": "<string>",
"DialInPrefix": "<string>",
"ZipPrefix": "<string>",
"DomainName": "<string>",
"AddressLayoutId": 123,
"DomesticAddressLayoutId": 123,
"ForeignAddressLayoutId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Deleted": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Interests": [
{
"Id": 123,
"Name": "<string>",
"ToolTip": "<string>",
"Deleted": true,
"Rank": 123,
"Type": "<string>",
"ColorBlock": 123,
"IconHint": "<string>",
"Selected": true,
"LastChanged": "2023-11-07T05:31:56Z",
"ChildItems": "<array>",
"ExtraInfo": "<string>",
"StyleHint": "<string>",
"Hidden": true,
"FullName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"PersonNumber": "<string>",
"FullName": "<string>",
"NoMailing": true,
"UsePersonAddress": true,
"Retired": true,
"Urls": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"FormalName": "<string>",
"Address": {
"Wgs84Latitude": 123,
"Wgs84Longitude": 123,
"LocalizedAddress": [
[
{
"Name": "<string>",
"Value": "<string>",
"Tooltip": "<string>",
"Label": "<string>",
"ValueLength": 123,
"AddressType": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
]
],
"Street": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Postal": {
"AtypeIdx": "Unknown",
"Address1": "<string>",
"Address2": "<string>",
"Address3": "<string>",
"City": "<string>",
"County": "<string>",
"State": "<string>",
"Zipcode": "<string>",
"Formatted": "<string>"
},
"Formatted": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Post3": "<string>",
"Post2": "<string>",
"Post1": "<string>",
"Kanalname": "<string>",
"Kanafname": "<string>",
"CorrespondingAssociate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Category": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"CategoryGroup": "Unknown",
"EnableLeadStatus": true,
"Rank": 123,
"Deleted": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Business": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Associate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Salutation": "<string>",
"ActiveInterests": 123,
"SupportAssociate": {
"AssociateId": 123,
"Name": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"Type": "Unknown",
"GroupIdx": 123,
"FullName": "<string>",
"FormalName": "<string>",
"Deleted": true,
"EjUserId": 123,
"UserName": "<string>",
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TicketPriority": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"CustomerLanguage": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"DbiAgentId": 123,
"DbiKey": "<string>",
"DbiLastModified": "2023-11-07T05:31:56Z",
"DbiLastSyncronized": "2023-11-07T05:31:56Z",
"SentInfo": 123,
"ShowContactTickets": 123,
"UserInfo": {
"Deleted": true,
"UserInfoId": 123,
"UserName": "<string>",
"PersonId": 123,
"Rank": 123,
"Tooltip": "<string>",
"UserGroupId": 123,
"EjUserId": 123,
"UserType": "Unknown",
"GrantedLicenses": [
"<string>"
],
"CanLogon": true,
"RoleName": "<string>",
"RoleTooltip": "<string>",
"UserGroupName": "<string>",
"UserGroupTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChatEmails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"InternetPhones": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Source": 123,
"ActiveErpLinks": 123,
"ShipmentTypes": [
{
"Id": 123,
"Name": "<string>",
"ToolTip": "<string>",
"Deleted": true,
"Rank": 123,
"Type": "<string>",
"ColorBlock": 123,
"IconHint": "<string>",
"Selected": true,
"LastChanged": "2023-11-07T05:31:56Z",
"ChildItems": "<array>",
"ExtraInfo": "<string>",
"StyleHint": "<string>",
"Hidden": true,
"FullName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Consents": [
{
"ConsentPersonId": 123,
"Comment": "<string>",
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"LegalBaseId": 123,
"LegalBaseKey": "<string>",
"LegalBaseName": "<string>",
"ConsentPurposeId": 123,
"ConsentPurposeKey": "<string>",
"ConsentPurposeName": "<string>",
"ConsentSourceId": 123,
"ConsentSourceKey": "<string>",
"ConsentSourceName": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"BounceEmails": [
"<string>"
],
"ActiveStatusMonitorId": 123,
"CreatedByFormId": 123,
"UtmParameters": {
"FormName": "<string>",
"FirsttouchSource": "<string>",
"FirsttouchMedium": "<string>",
"FirsttouchCampaign": "<string>",
"FirsttouchTerm": "<string>",
"FirsttouchContent": "<string>",
"FirsttouchReferrerDomain": "<string>",
"Source": "<string>",
"Medium": "<string>",
"Campaign": "<string>",
"Term": "<string>",
"Content": "<string>",
"ReferrerDomain": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"LeadstatusId": 123,
"Leadstatus": "<string>",
"UserDefinedFields": {},
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"PersonCreated": true,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Headers
Convert string references and multi-language values into a specified language (iso2) code.
Convert string references and multi-language values into a specified language (iso2) code. Overrides Accept-Language value.
Number, date formatting in a specified culture (iso2 language) code. Partially overrides SO-Language/Accept-Language value. Ignored if no Language set.
Specify the timezone code that you would like date/time responses converted to.
The application token that identifies the partner app. Used when calling Online WebAPI from a server.
Query Parameters
Optional comma separated list of properties to include in the result. Other fields are then nulled out to reduce payload size: "Name,department,category". Default = show all fields.
Body
ContactId, PersonName, PhoneNumbers, Emails
Response
OK
The Person Service. The service implements all services working with the Person object. Carrier object for ResolvedPerson. Services for the ResolvedPerson Carrier is available from the Person Agent.
Show child attributes
Show child attributes
Indicates if the resolved person was created or not.
Wraps a table right together with an explanatory reason. Code can indicate why access is restricted.
Show child attributes
Show child attributes
Field property dictionary mapping field names to field access rights.
Show child attributes
Show child attributes
Related topics
NSPersonAgentResolve User From InfoNSUserAgentResolve E Mail RecipientsResolve IncludesNSResolvedPerson