Objective-C Dynamics CRM: Retrieve a Single Contact

Back to Index

Returns the full contact record for a given contactid.

Documentation: https://msdn.microsoft.com/en-us/library/gg334767.aspx#Basic query example

CURL Command

curl -X GET https://my-dynamics-domain.api.crm.dynamics.com/api/data/v9.0/contacts(1fa1e5b9-88df-e311-b8e5-6c3be5a8b200) \
  -H "Accept: application/json" \
  -H "OData-MaxVersion: 4.0"  \
  -H "OData-Version: 4.0" \
  -H "Authorization: Bearer DYNAMICS_CRM_ACCESS_TOKEN"

Objective-C Example

#import <CkoRest.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>
#import <NSString.h>

CkoRest *rest = [[CkoRest alloc] init];
BOOL success;

//  URL: https://my-dynamics-domain.api.crm.dynamics.com/api/data/v9.0/contacts(1fa1e5b9-88df-e311-b8e5-6c3be5a8b200)
BOOL bTls = YES;
int port = 443;
BOOL bAutoReconnect = YES;
success = [rest Connect: @"my-dynamics-domain.api.crm.dynamics.com" port: [NSNumber numberWithInt: port] tls: bTls autoReconnect: bAutoReconnect];
if (success != YES) {
    NSLog(@"%@%d",@"ConnectFailReason: ",[rest.ConnectFailReason intValue]);
    NSLog(@"%@",rest.LastErrorText);
    return;
}

[rest AddHeader: @"OData-MaxVersion" value: @"4.0"];
[rest AddHeader: @"Accept" value: @"application/json"];
[rest AddHeader: @"OData-Version" value: @"4.0"];
[rest AddHeader: @"Authorization" value: @"Bearer DYNAMICS_CRM_ACCESS_TOKEN"];

CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [rest FullRequestNoBodySb: @"GET" uriPath: @"/api/data/v9.0/contacts(1fa1e5b9-88df-e311-b8e5-6c3be5a8b200)" sb: sbResponseBody];
if (success != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

int respStatusCode = [rest.ResponseStatusCode intValue];
if (respStatusCode >= 400) {
    NSLog(@"%@%d",@"Response Status Code = ",respStatusCode);
    NSLog(@"%@",@"Response Header:");
    NSLog(@"%@",rest.ResponseHeader);
    NSLog(@"%@",@"Response Body:");
    NSLog(@"%@",[sbResponseBody GetAsString]);
    return;
}

CkoJsonObject *jsonResponse = [[CkoJsonObject alloc] init];
[jsonResponse LoadSb: sbResponseBody];

NSString *odataContext = [jsonResponse StringOf: @"\"@odata.context\""];
NSString *odataEtag = [jsonResponse StringOf: @"\"@odata.etag\""];
int customertypecode = [[jsonResponse IntOf: @"customertypecode"] intValue];
int address1_latitude = [[jsonResponse IntOf: @"address1_latitude"] intValue];
NSString *birthdate = [jsonResponse StringOf: @"birthdate"];
BOOL merged = [jsonResponse BoolOf: @"merged"];
int gendercode = [[jsonResponse IntOf: @"gendercode"] intValue];
int territorycode = [[jsonResponse IntOf: @"territorycode"] intValue];
NSString *emailaddress1 = [jsonResponse StringOf: @"emailaddress1"];
int haschildrencode = [[jsonResponse IntOf: @"haschildrencode"] intValue];
int preferredappointmenttimecode = [[jsonResponse IntOf: @"preferredappointmenttimecode"] intValue];
BOOL isbackofficecustomer = [jsonResponse BoolOf: @"isbackofficecustomer"];
NSString *modifiedon = [jsonResponse StringOf: @"modifiedon"];
NSString *v_owninguser_value = [jsonResponse StringOf: @"_owninguser_value"];
int importsequencenumber = [[jsonResponse IntOf: @"importsequencenumber"] intValue];
NSString *address1_composite = [jsonResponse StringOf: @"address1_composite"];
int address1_longitude = [[jsonResponse IntOf: @"address1_longitude"] intValue];
BOOL marketingonly = [jsonResponse BoolOf: @"marketingonly"];
BOOL donotphone = [jsonResponse BoolOf: @"donotphone"];
int preferredcontactmethodcode = [[jsonResponse IntOf: @"preferredcontactmethodcode"] intValue];
int educationcode = [[jsonResponse IntOf: @"educationcode"] intValue];
NSString *v_ownerid_value = [jsonResponse StringOf: @"_ownerid_value"];
int customersizecode = [[jsonResponse IntOf: @"customersizecode"] intValue];
NSString *firstname = [jsonResponse StringOf: @"firstname"];
BOOL donotpostalmail = [jsonResponse BoolOf: @"donotpostalmail"];
NSString *yomifullname = [jsonResponse StringOf: @"yomifullname"];
int address2_addresstypecode = [[jsonResponse IntOf: @"address2_addresstypecode"] intValue];
BOOL donotemail = [jsonResponse BoolOf: @"donotemail"];
int address2_shippingmethodcode = [[jsonResponse IntOf: @"address2_shippingmethodcode"] intValue];
NSString *fullname = [jsonResponse StringOf: @"fullname"];
int timezoneruleversionnumber = [[jsonResponse IntOf: @"timezoneruleversionnumber"] intValue];
NSString *address1_addressid = [jsonResponse StringOf: @"address1_addressid"];
int address2_freighttermscode = [[jsonResponse IntOf: @"address2_freighttermscode"] intValue];
int statuscode = [[jsonResponse IntOf: @"statuscode"] intValue];
NSString *createdon = [jsonResponse StringOf: @"createdon"];
NSString *address1_stateorprovince = [jsonResponse StringOf: @"address1_stateorprovince"];
NSString *lastname = [jsonResponse StringOf: @"lastname"];
BOOL donotsendmm = [jsonResponse BoolOf: @"donotsendmm"];
BOOL donotfax = [jsonResponse BoolOf: @"donotfax"];
int leadsourcecode = [[jsonResponse IntOf: @"leadsourcecode"] intValue];
NSString *address1_country = [jsonResponse StringOf: @"address1_country"];
int versionnumber = [[jsonResponse IntOf: @"versionnumber"] intValue];
NSString *address1_line1 = [jsonResponse StringOf: @"address1_line1"];
BOOL creditonhold = [jsonResponse BoolOf: @"creditonhold"];
NSString *telephone1 = [jsonResponse StringOf: @"telephone1"];
NSString *v_owningbusinessunit_value = [jsonResponse StringOf: @"_owningbusinessunit_value"];
NSString *address3_addressid = [jsonResponse StringOf: @"address3_addressid"];
BOOL donotbulkemail = [jsonResponse BoolOf: @"donotbulkemail"];
NSString *v_modifiedby_value = [jsonResponse StringOf: @"_modifiedby_value"];
BOOL followemail = [jsonResponse BoolOf: @"followemail"];
int shippingmethodcode = [[jsonResponse IntOf: @"shippingmethodcode"] intValue];
NSString *v_createdby_value = [jsonResponse StringOf: @"_createdby_value"];
NSString *address1_city = [jsonResponse StringOf: @"address1_city"];
BOOL donotbulkpostalmail = [jsonResponse BoolOf: @"donotbulkpostalmail"];
NSString *v_parentcustomerid_value = [jsonResponse StringOf: @"_parentcustomerid_value"];
NSString *contactid = [jsonResponse StringOf: @"contactid"];
BOOL participatesinworkflow = [jsonResponse BoolOf: @"participatesinworkflow"];
int statecode = [[jsonResponse IntOf: @"statecode"] intValue];
NSString *overriddencreatedon = [jsonResponse StringOf: @"overriddencreatedon"];
NSString *address2_addressid = [jsonResponse StringOf: @"address2_addressid"];
NSString *address1_postalcode = [jsonResponse StringOf: @"address1_postalcode"];
int int_kloutscore = [[jsonResponse IntOf: @"int_kloutscore"] intValue];
NSString *spousesname = [jsonResponse StringOf: @"spousesname"];
NSString *emailaddress3 = [jsonResponse StringOf: @"emailaddress3"];
NSString *address3_telephone3 = [jsonResponse StringOf: @"address3_telephone3"];
NSString *mobilephone = [jsonResponse StringOf: @"mobilephone"];
NSString *utcconversiontimezonecode = [jsonResponse StringOf: @"utcconversiontimezonecode"];
NSString *v_preferredserviceid_value = [jsonResponse StringOf: @"_preferredserviceid_value"];
NSString *address3_shippingmethodcode = [jsonResponse StringOf: @"address3_shippingmethodcode"];
NSString *int_twitterservice = [jsonResponse StringOf: @"int_twitterservice"];
NSString *annualincome = [jsonResponse StringOf: @"annualincome"];
NSString *fax = [jsonResponse StringOf: @"fax"];
NSString *telephone3 = [jsonResponse StringOf: @"telephone3"];
NSString *address1_primarycontactname = [jsonResponse StringOf: @"address1_primarycontactname"];
NSString *address3_city = [jsonResponse StringOf: @"address3_city"];
NSString *lastonholdtime = [jsonResponse StringOf: @"lastonholdtime"];
NSString *address2_stateorprovince = [jsonResponse StringOf: @"address2_stateorprovince"];
NSString *address2_line1 = [jsonResponse StringOf: @"address2_line1"];
NSString *assistantphone = [jsonResponse StringOf: @"assistantphone"];
NSString *lastusedincampaign = [jsonResponse StringOf: @"lastusedincampaign"];
NSString *address3_freighttermscode = [jsonResponse StringOf: @"address3_freighttermscode"];
NSString *pager = [jsonResponse StringOf: @"pager"];
NSString *employeeid = [jsonResponse StringOf: @"employeeid"];
NSString *managername = [jsonResponse StringOf: @"managername"];
NSString *address1_name = [jsonResponse StringOf: @"address1_name"];
NSString *department = [jsonResponse StringOf: @"department"];
NSString *address3_country = [jsonResponse StringOf: @"address3_country"];
NSString *address2_telephone1 = [jsonResponse StringOf: @"address2_telephone1"];
NSString *address2_primarycontactname = [jsonResponse StringOf: @"address2_primarycontactname"];
NSString *address2_latitude = [jsonResponse StringOf: @"address2_latitude"];
NSString *address3_latitude = [jsonResponse StringOf: @"address3_latitude"];
NSString *address2_postalcode = [jsonResponse StringOf: @"address2_postalcode"];
NSString *entityimage_timestamp = [jsonResponse StringOf: @"entityimage_timestamp"];
NSString *v_originatingleadid_value = [jsonResponse StringOf: @"_originatingleadid_value"];
NSString *v_masterid_value = [jsonResponse StringOf: @"_masterid_value"];
NSString *v_createdonbehalfby_value = [jsonResponse StringOf: @"_createdonbehalfby_value"];
NSString *address3_postofficebox = [jsonResponse StringOf: @"address3_postofficebox"];
NSString *subscriptionid = [jsonResponse StringOf: @"subscriptionid"];
NSString *business2 = [jsonResponse StringOf: @"business2"];
NSString *address3_county = [jsonResponse StringOf: @"address3_county"];
NSString *address1_telephone2 = [jsonResponse StringOf: @"address1_telephone2"];
NSString *address1_freighttermscode = [jsonResponse StringOf: @"address1_freighttermscode"];
NSString *address3_addresstypecode = [jsonResponse StringOf: @"address3_addresstypecode"];
NSString *address1_addresstypecode = [jsonResponse StringOf: @"address1_addresstypecode"];
NSString *aging90_base = [jsonResponse StringOf: @"aging90_base"];
NSString *address3_primarycontactname = [jsonResponse StringOf: @"address3_primarycontactname"];
NSString *familystatuscode = [jsonResponse StringOf: @"familystatuscode"];
NSString *home2 = [jsonResponse StringOf: @"home2"];
NSString *int_kloutscoreservice = [jsonResponse StringOf: @"int_kloutscoreservice"];
NSString *address2_utcoffset = [jsonResponse StringOf: @"address2_utcoffset"];
NSString *aging60 = [jsonResponse StringOf: @"aging60"];
NSString *telephone2 = [jsonResponse StringOf: @"telephone2"];
NSString *yomimiddlename = [jsonResponse StringOf: @"yomimiddlename"];
NSString *v_modifiedonbehalfby_value = [jsonResponse StringOf: @"_modifiedonbehalfby_value"];
NSString *jobtitle = [jsonResponse StringOf: @"jobtitle"];
NSString *address3_utcoffset = [jsonResponse StringOf: @"address3_utcoffset"];
NSString *address1_telephone3 = [jsonResponse StringOf: @"address1_telephone3"];
NSString *address2_line2 = [jsonResponse StringOf: @"address2_line2"];
NSString *creditlimit_base = [jsonResponse StringOf: @"creditlimit_base"];
NSString *address3_line1 = [jsonResponse StringOf: @"address3_line1"];
NSString *address1_county = [jsonResponse StringOf: @"address1_county"];
NSString *v_createdbyexternalparty_value = [jsonResponse StringOf: @"_createdbyexternalparty_value"];
NSString *entityimageid = [jsonResponse StringOf: @"entityimageid"];
NSString *processid = [jsonResponse StringOf: @"processid"];
NSString *int_facebook = [jsonResponse StringOf: @"int_facebook"];
NSString *description = [jsonResponse StringOf: @"description"];
NSString *address1_fax = [jsonResponse StringOf: @"address1_fax"];
NSString *address3_line2 = [jsonResponse StringOf: @"address3_line2"];
NSString *externaluseridentifier = [jsonResponse StringOf: @"externaluseridentifier"];
NSString *int_facebookservice = [jsonResponse StringOf: @"int_facebookservice"];
NSString *aging30_base = [jsonResponse StringOf: @"aging30_base"];
NSString *v_callback = [jsonResponse StringOf: @"callback"];
NSString *emailaddress2 = [jsonResponse StringOf: @"emailaddress2"];
NSString *address2_line3 = [jsonResponse StringOf: @"address2_line3"];
NSString *managerphone = [jsonResponse StringOf: @"managerphone"];
NSString *websiteurl = [jsonResponse StringOf: @"websiteurl"];
NSString *exchangerate = [jsonResponse StringOf: @"exchangerate"];
NSString *address1_telephone1 = [jsonResponse StringOf: @"address1_telephone1"];
NSString *address3_composite = [jsonResponse StringOf: @"address3_composite"];
NSString *address3_fax = [jsonResponse StringOf: @"address3_fax"];
NSString *childrensnames = [jsonResponse StringOf: @"childrensnames"];
NSString *v_owningteam_value = [jsonResponse StringOf: @"_owningteam_value"];
NSString *numberofchildren = [jsonResponse StringOf: @"numberofchildren"];
NSString *address2_postofficebox = [jsonResponse StringOf: @"address2_postofficebox"];
NSString *aging90 = [jsonResponse StringOf: @"aging90"];
NSString *aging60_base = [jsonResponse StringOf: @"aging60_base"];
NSString *v_transactioncurrencyid_value = [jsonResponse StringOf: @"_transactioncurrencyid_value"];
NSString *entityimage = [jsonResponse StringOf: @"entityimage"];
NSString *v_modifiedbyexternalparty_value = [jsonResponse StringOf: @"_modifiedbyexternalparty_value"];
NSString *paymenttermscode = [jsonResponse StringOf: @"paymenttermscode"];
NSString *address3_name = [jsonResponse StringOf: @"address3_name"];
NSString *ftpsiteurl = [jsonResponse StringOf: @"ftpsiteurl"];
NSString *address1_shippingmethodcode = [jsonResponse StringOf: @"address1_shippingmethodcode"];
NSString *v_preferredsystemuserid_value = [jsonResponse StringOf: @"_preferredsystemuserid_value"];
NSString *address2_telephone2 = [jsonResponse StringOf: @"address2_telephone2"];
NSString *v_slainvokedid_value = [jsonResponse StringOf: @"_slainvokedid_value"];
NSString *address3_telephone1 = [jsonResponse StringOf: @"address3_telephone1"];
NSString *nickname = [jsonResponse StringOf: @"nickname"];
NSString *address1_postofficebox = [jsonResponse StringOf: @"address1_postofficebox"];
NSString *v_preferredequipmentid_value = [jsonResponse StringOf: @"_preferredequipmentid_value"];
NSString *assistantname = [jsonResponse StringOf: @"assistantname"];
NSString *address2_country = [jsonResponse StringOf: @"address2_country"];
NSString *v_accountid_value = [jsonResponse StringOf: @"_accountid_value"];
NSString *address2_name = [jsonResponse StringOf: @"address2_name"];
NSString *stageid = [jsonResponse StringOf: @"stageid"];
NSString *address3_longitude = [jsonResponse StringOf: @"address3_longitude"];
NSString *onholdtime = [jsonResponse StringOf: @"onholdtime"];
NSString *address2_telephone3 = [jsonResponse StringOf: @"address2_telephone3"];
NSString *address3_upszone = [jsonResponse StringOf: @"address3_upszone"];
NSString *aging30 = [jsonResponse StringOf: @"aging30"];
NSString *address2_upszone = [jsonResponse StringOf: @"address2_upszone"];
NSString *address1_upszone = [jsonResponse StringOf: @"address1_upszone"];
NSString *creditlimit = [jsonResponse StringOf: @"creditlimit"];
NSString *salutation = [jsonResponse StringOf: @"salutation"];
NSString *traversedpath = [jsonResponse StringOf: @"traversedpath"];
NSString *accountrolecode = [jsonResponse StringOf: @"accountrolecode"];
NSString *address1_utcoffset = [jsonResponse StringOf: @"address1_utcoffset"];
NSString *governmentid = [jsonResponse StringOf: @"governmentid"];
NSString *annualincome_base = [jsonResponse StringOf: @"annualincome_base"];
NSString *address3_stateorprovince = [jsonResponse StringOf: @"address3_stateorprovince"];
NSString *address3_postalcode = [jsonResponse StringOf: @"address3_postalcode"];
NSString *address2_city = [jsonResponse StringOf: @"address2_city"];
NSString *msdyn_gdproptout = [jsonResponse StringOf: @"msdyn_gdproptout"];
NSString *company = [jsonResponse StringOf: @"company"];
NSString *address1_line2 = [jsonResponse StringOf: @"address1_line2"];
NSString *address2_longitude = [jsonResponse StringOf: @"address2_longitude"];
NSString *int_twitter = [jsonResponse StringOf: @"int_twitter"];
NSString *address3_telephone2 = [jsonResponse StringOf: @"address3_telephone2"];
NSString *yomifirstname = [jsonResponse StringOf: @"yomifirstname"];
NSString *address2_composite = [jsonResponse StringOf: @"address2_composite"];
NSString *address2_county = [jsonResponse StringOf: @"address2_county"];
NSString *suffix = [jsonResponse StringOf: @"suffix"];
NSString *anniversary = [jsonResponse StringOf: @"anniversary"];
NSString *v_parentcontactid_value = [jsonResponse StringOf: @"_parentcontactid_value"];
NSString *address2_fax = [jsonResponse StringOf: @"address2_fax"];
NSString *yomilastname = [jsonResponse StringOf: @"yomilastname"];
NSString *preferredappointmentdaycode = [jsonResponse StringOf: @"preferredappointmentdaycode"];
NSString *entityimage_url = [jsonResponse StringOf: @"entityimage_url"];
NSString *address1_line3 = [jsonResponse StringOf: @"address1_line3"];
NSString *v_defaultpricelevelid_value = [jsonResponse StringOf: @"_defaultpricelevelid_value"];
NSString *v_slaid_value = [jsonResponse StringOf: @"_slaid_value"];
NSString *middlename = [jsonResponse StringOf: @"middlename"];
NSString *address3_line3 = [jsonResponse StringOf: @"address3_line3"];
NSString *timespentbymeonemailandmeetings = [jsonResponse StringOf: @"timespentbymeonemailandmeetings"];

Sample JSON Response Body

{
  "@odata.context": "https://mydomain.api.crm.dynamics.com/api/data/v9.0/$metadata#contacts/$entity",
  "@odata.etag": "W/\"1162210\"",
  "customertypecode": 1,
  "address1_latitude": 35.82096,
  "birthdate": "1965-05-24",
  "merged": false,
  "gendercode": 1,
  "territorycode": 1,
  "emailaddress1": "tom@cohowinery.com",
  "haschildrencode": 1,
  "preferredappointmenttimecode": 1,
  "isbackofficecustomer": false,
  "modifiedon": "2018-03-12T16:09:53Z",
  "_owninguser_value": "55e68414-a277-42d6-ba36-d90484708a1d",
  "importsequencenumber": 104,
  "address1_composite": "4405 Balboa Court\r\nSanta Cruz, NM 72052\r\nUS",
  "address1_longitude": -106.21346,
  "marketingonly": false,
  "donotphone": false,
  "preferredcontactmethodcode": 1,
  "educationcode": 1,
  "_ownerid_value": "55e68414-a277-42d6-ba36-d90484708a1d",
  "customersizecode": 1,
  "firstname": "Tomasz",
  "donotpostalmail": false,
  "yomifullname": "Tomasz Bochenek",
  "address2_addresstypecode": 1,
  "donotemail": false,
  "address2_shippingmethodcode": 1,
  "fullname": "Tomasz Bochenek",
  "timezoneruleversionnumber": 0,
  "address1_addressid": "c3a917d8-1daa-463b-a4ac-f6d9878d7456",
  "address2_freighttermscode": 1,
  "statuscode": 1,
  "createdon": "2017-01-20T22:40:01Z",
  "address1_stateorprovince": "NM",
  "lastname": "Bochenek",
  "donotsendmm": false,
  "donotfax": false,
  "leadsourcecode": 1,
  "address1_country": "US",
  "versionnumber": 1162210,
  "address1_line1": "4405 Balboa Court",
  "creditonhold": false,
  "telephone1": "456-698-4581",
  "_owningbusinessunit_value": "c4106190-c81e-e811-a980-000d3a192e9a",
  "address3_addressid": "e3e5cc17-4990-4d08-8a4d-c16ca45217ab",
  "donotbulkemail": false,
  "_modifiedby_value": "e00ba668-e2de-47bc-8f92-ab9573f92ff4",
  "followemail": true,
  "shippingmethodcode": 1,
  "_createdby_value": "55e68414-a277-42d6-ba36-d90484708a1d",
  "address1_city": "Santa Cruz",
  "donotbulkpostalmail": false,
  "_parentcustomerid_value": "b0a19cdd-88df-e311-b8e5-6c3be5a8b200",
  "contactid": "1fa1e5b9-88df-e311-b8e5-6c3be5a8b200",
  "participatesinworkflow": false,
  "statecode": 0,
  "overriddencreatedon": "2018-03-03T12:22:25Z",
  "address2_addressid": "fee626cd-e834-4a68-a54e-b98c23847b2d",
  "address1_postalcode": "72052",
  "int_kloutscore": 90,
  "spousesname": null,
  "emailaddress3": null,
  "address3_telephone3": null,
  "mobilephone": null,
  "utcconversiontimezonecode": null,
  "_preferredserviceid_value": null,
  "address3_shippingmethodcode": null,
  "int_twitterservice": null,
  "annualincome": null,
  "fax": null,
  "telephone3": null,
  "address1_primarycontactname": null,
  "address3_city": null,
  "lastonholdtime": null,
  "address2_stateorprovince": null,
  "address2_line1": null,
  "assistantphone": null,
  "lastusedincampaign": null,
  "address3_freighttermscode": null,
  "pager": null,
  "employeeid": null,
  "managername": null,
  "address1_name": null,
  "department": null,
  "address3_country": null,
  "address2_telephone1": null,
  "address2_primarycontactname": null,
  "address2_latitude": null,
  "address3_latitude": null,
  "address2_postalcode": null,
  "entityimage_timestamp": null,
  "_originatingleadid_value": null,
  "_masterid_value": null,
  "_createdonbehalfby_value": null,
  "address3_postofficebox": null,
  "subscriptionid": null,
  "business2": null,
  "address3_county": null,
  "address1_telephone2": null,
  "address1_freighttermscode": null,
  "address3_addresstypecode": null,
  "address1_addresstypecode": null,
  "aging90_base": null,
  "address3_primarycontactname": null,
  "familystatuscode": null,
  "home2": null,
  "int_kloutscoreservice": null,
  "address2_utcoffset": null,
  "aging60": null,
  "telephone2": null,
  "yomimiddlename": null,
  "_modifiedonbehalfby_value": null,
  "jobtitle": null,
  "address3_utcoffset": null,
  "address1_telephone3": null,
  "address2_line2": null,
  "creditlimit_base": null,
  "address3_line1": null,
  "address1_county": null,
  "_createdbyexternalparty_value": null,
  "entityimageid": null,
  "processid": null,
  "int_facebook": null,
  "description": null,
  "address1_fax": null,
  "address3_line2": null,
  "externaluseridentifier": null,
  "int_facebookservice": null,
  "aging30_base": null,
  "callback": null,
  "emailaddress2": null,
  "address2_line3": null,
  "managerphone": null,
  "websiteurl": null,
  "exchangerate": null,
  "address1_telephone1": null,
  "address3_composite": null,
  "address3_fax": null,
  "childrensnames": null,
  "_owningteam_value": null,
  "numberofchildren": null,
  "address2_postofficebox": null,
  "aging90": null,
  "aging60_base": null,
  "_transactioncurrencyid_value": null,
  "entityimage": null,
  "_modifiedbyexternalparty_value": null,
  "paymenttermscode": null,
  "address3_name": null,
  "ftpsiteurl": null,
  "address1_shippingmethodcode": null,
  "_preferredsystemuserid_value": null,
  "address2_telephone2": null,
  "_slainvokedid_value": null,
  "address3_telephone1": null,
  "nickname": null,
  "address1_postofficebox": null,
  "_preferredequipmentid_value": null,
  "assistantname": null,
  "address2_country": null,
  "_accountid_value": null,
  "address2_name": null,
  "stageid": null,
  "address3_longitude": null,
  "onholdtime": null,
  "address2_telephone3": null,
  "address3_upszone": null,
  "aging30": null,
  "address2_upszone": null,
  "address1_upszone": null,
  "creditlimit": null,
  "salutation": null,
  "traversedpath": null,
  "accountrolecode": null,
  "address1_utcoffset": null,
  "governmentid": null,
  "annualincome_base": null,
  "address3_stateorprovince": null,
  "address3_postalcode": null,
  "address2_city": null,
  "msdyn_gdproptout": null,
  "company": null,
  "address1_line2": null,
  "address2_longitude": null,
  "int_twitter": null,
  "address3_telephone2": null,
  "yomifirstname": null,
  "address2_composite": null,
  "address2_county": null,
  "suffix": null,
  "anniversary": null,
  "_parentcontactid_value": null,
  "address2_fax": null,
  "yomilastname": null,
  "preferredappointmentdaycode": null,
  "entityimage_url": null,
  "address1_line3": null,
  "_defaultpricelevelid_value": null,
  "_slaid_value": null,
  "middlename": null,
  "address3_line3": null,
  "timespentbymeonemailandmeetings": null
}