using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"Text\": \"<string>\",\n \"MergeWithDatabase\": true\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({Text: '<string>', MergeWithDatabase: true})
};
fetch('http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText', 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/AI/AnalyzeBizCardText",
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([
'Text' => '<string>',
'MergeWithDatabase' => true
]),
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/AI/AnalyzeBizCardText"
payload = {
"Text": "<string>",
"MergeWithDatabase": True
}
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({Text: '<string>', MergeWithDatabase: true})
};
fetch('http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Contact": {
"ContactId": 123,
"Name": "<string>",
"Department": "<string>",
"OrgNr": "<string>",
"Number1": "<string>",
"Number2": "<string>",
"UpdatedDate": "2023-11-07T05:31:56Z",
"CreatedDate": "2023-11-07T05:31:56Z",
"Emails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"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": {}
}
],
"Urls": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Phones": [
{
"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": {}
}
],
"Description": "<string>",
"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": {}
},
"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": {}
},
"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": {}
},
"Business": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"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": {}
},
"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": {}
},
"Persons": [
{
"Position": "<string>",
"PersonId": 123,
"Mrmrs": "<string>",
"Firstname": "<string>",
"Lastname": "<string>",
"MiddleName": "<string>",
"Title": "<string>",
"Description": "<string>",
"Email": "<string>",
"FullName": "<string>",
"DirectPhone": "<string>",
"FormalName": "<string>",
"CountryId": 123,
"ContactId": 123,
"ContactName": "<string>",
"Retired": 123,
"Rank": 123,
"ActiveInterests": 123,
"ContactDepartment": "<string>",
"ContactCountryId": 123,
"ContactOrgNr": "<string>",
"FaxPhone": "<string>",
"MobilePhone": "<string>",
"ContactPhone": "<string>",
"AssociateName": "<string>",
"AssociateId": 123,
"UsePersonAddress": true,
"ContactFax": "<string>",
"Kanafname": "<string>",
"Kanalname": "<string>",
"Post1": "<string>",
"Post2": "<string>",
"Post3": "<string>",
"EmailName": "<string>",
"ContactFullName": "<string>",
"ActiveErpLinks": 123,
"TicketPriorityId": 123,
"SupportLanguageId": 123,
"SupportAssociateId": 123,
"CategoryName": "<string>",
"PersonNumber": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"NoMailing": true,
"Kananame": "<string>",
"Xstop": true,
"ActiveInterests": 123,
"GroupId": 123,
"ActiveStatusMonitorId": 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": {}
},
"Deleted": 123,
"DbiAgentId": 123,
"DbiLastSyncronized": "2023-11-07T05:31:56Z",
"DbiKey": "<string>",
"DbiLastModified": "2023-11-07T05:31:56Z",
"SupportPerson": {
"Position": "<string>",
"PersonId": 123,
"Mrmrs": "<string>",
"Firstname": "<string>",
"Lastname": "<string>",
"MiddleName": "<string>",
"Title": "<string>",
"Description": "<string>",
"Email": "<string>",
"FullName": "<string>",
"DirectPhone": "<string>",
"FormalName": "<string>",
"CountryId": 123,
"ContactId": 123,
"ContactName": "<string>",
"Retired": 123,
"Rank": 123,
"ActiveInterests": 123,
"ContactDepartment": "<string>",
"ContactCountryId": 123,
"ContactOrgNr": "<string>",
"FaxPhone": "<string>",
"MobilePhone": "<string>",
"ContactPhone": "<string>",
"AssociateName": "<string>",
"AssociateId": 123,
"UsePersonAddress": true,
"ContactFax": "<string>",
"Kanafname": "<string>",
"Kanalname": "<string>",
"Post1": "<string>",
"Post2": "<string>",
"Post3": "<string>",
"EmailName": "<string>",
"ContactFullName": "<string>",
"ActiveErpLinks": 123,
"TicketPriorityId": 123,
"SupportLanguageId": 123,
"SupportAssociateId": 123,
"CategoryName": "<string>",
"PersonNumber": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"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": {}
},
"Source": 123,
"ActiveErpLinks": 123,
"BounceEmails": [
"<string>"
],
"Domains": [
"<string>"
],
"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": {}
},
"UserDefinedFields": {},
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"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": {}
},
"LogoImage": "<string>",
"PhotoImage": "<string>"
}Analyze Biz Card Text
Extract contact and person information from text.
Merge results with matching database records if merge = true
NsApiSlow threshold: 1000 ms.
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"Text\": \"<string>\",\n \"MergeWithDatabase\": true\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({Text: '<string>', MergeWithDatabase: true})
};
fetch('http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText', 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/AI/AnalyzeBizCardText",
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([
'Text' => '<string>',
'MergeWithDatabase' => true
]),
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/AI/AnalyzeBizCardText"
payload = {
"Text": "<string>",
"MergeWithDatabase": True
}
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({Text: '<string>', MergeWithDatabase: true})
};
fetch('http://localhost:56350/api/v1/Agents/AI/AnalyzeBizCardText', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Contact": {
"ContactId": 123,
"Name": "<string>",
"Department": "<string>",
"OrgNr": "<string>",
"Number1": "<string>",
"Number2": "<string>",
"UpdatedDate": "2023-11-07T05:31:56Z",
"CreatedDate": "2023-11-07T05:31:56Z",
"Emails": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"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": {}
}
],
"Urls": [
{
"Value": "<string>",
"StrippedValue": "<string>",
"Description": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Phones": [
{
"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": {}
}
],
"Description": "<string>",
"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": {}
},
"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": {}
},
"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": {}
},
"Business": {
"Id": 123,
"Value": "<string>",
"Tooltip": "<string>",
"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": {}
},
"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": {}
},
"Persons": [
{
"Position": "<string>",
"PersonId": 123,
"Mrmrs": "<string>",
"Firstname": "<string>",
"Lastname": "<string>",
"MiddleName": "<string>",
"Title": "<string>",
"Description": "<string>",
"Email": "<string>",
"FullName": "<string>",
"DirectPhone": "<string>",
"FormalName": "<string>",
"CountryId": 123,
"ContactId": 123,
"ContactName": "<string>",
"Retired": 123,
"Rank": 123,
"ActiveInterests": 123,
"ContactDepartment": "<string>",
"ContactCountryId": 123,
"ContactOrgNr": "<string>",
"FaxPhone": "<string>",
"MobilePhone": "<string>",
"ContactPhone": "<string>",
"AssociateName": "<string>",
"AssociateId": 123,
"UsePersonAddress": true,
"ContactFax": "<string>",
"Kanafname": "<string>",
"Kanalname": "<string>",
"Post1": "<string>",
"Post2": "<string>",
"Post3": "<string>",
"EmailName": "<string>",
"ContactFullName": "<string>",
"ActiveErpLinks": 123,
"TicketPriorityId": 123,
"SupportLanguageId": 123,
"SupportAssociateId": 123,
"CategoryName": "<string>",
"PersonNumber": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"NoMailing": true,
"Kananame": "<string>",
"Xstop": true,
"ActiveInterests": 123,
"GroupId": 123,
"ActiveStatusMonitorId": 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": {}
},
"Deleted": 123,
"DbiAgentId": 123,
"DbiLastSyncronized": "2023-11-07T05:31:56Z",
"DbiKey": "<string>",
"DbiLastModified": "2023-11-07T05:31:56Z",
"SupportPerson": {
"Position": "<string>",
"PersonId": 123,
"Mrmrs": "<string>",
"Firstname": "<string>",
"Lastname": "<string>",
"MiddleName": "<string>",
"Title": "<string>",
"Description": "<string>",
"Email": "<string>",
"FullName": "<string>",
"DirectPhone": "<string>",
"FormalName": "<string>",
"CountryId": 123,
"ContactId": 123,
"ContactName": "<string>",
"Retired": 123,
"Rank": 123,
"ActiveInterests": 123,
"ContactDepartment": "<string>",
"ContactCountryId": 123,
"ContactOrgNr": "<string>",
"FaxPhone": "<string>",
"MobilePhone": "<string>",
"ContactPhone": "<string>",
"AssociateName": "<string>",
"AssociateId": 123,
"UsePersonAddress": true,
"ContactFax": "<string>",
"Kanafname": "<string>",
"Kanalname": "<string>",
"Post1": "<string>",
"Post2": "<string>",
"Post3": "<string>",
"EmailName": "<string>",
"ContactFullName": "<string>",
"ActiveErpLinks": 123,
"TicketPriorityId": 123,
"SupportLanguageId": 123,
"SupportAssociateId": 123,
"CategoryName": "<string>",
"PersonNumber": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"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": {}
},
"Source": 123,
"ActiveErpLinks": 123,
"BounceEmails": [
"<string>"
],
"Domains": [
"<string>"
],
"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": {}
},
"UserDefinedFields": {},
"ExtraFields": {},
"CustomFields": {},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"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": {}
},
"LogoImage": "<string>",
"PhotoImage": "<string>"
}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
Text, MergeWithDatabase
AnalyzeBizCardText: Extract contact and person information from text. Merge results with matching database records if merge = true
Response
OK
Contains a ContactEntity and a PersonEntity filled with information from a business card. Carrier object for BizCard. Services for the BizCard Carrier is available from the AI Agent.
The Contact Service. The service implements all services working with the Contact object Carrier object for ContactEntity. Services for the ContactEntity Carrier is available from the Contact Agent.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Base64 encoded company logo image, if available.
Base64 encoded person photo image, if available.
Related topics
Analyze Biz Card ImageGet My Biz CardNSContactAgentAnalyze your mailing resultsAnalyze your flow resultsSuperOffice Mobile CRM - Version 11 updates