(Crm.Contacts)
List contacts
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
using System.Collections.Generic;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
CrmContactsAllRequest req = new CrmContactsAllRequest() {
ServiceId = "salesforce",
Filter = new ContactsFilter() {
FirstName = "Elon",
LastName = "Musk",
Email = "elon@tesla.com",
CompanyId = "12345",
OwnerId = "12345",
},
Sort = new ContactsSort() {
By = ContactsSortBy.CreatedAt,
Direction = SortDirection.Desc,
},
PassThrough = new Dictionary<string, object>() {
{ "search", "San Francisco" },
},
Fields = "id,updated_at",
};
CrmContactsAllResponse? res = await sdk.Crm.Contacts.ListAsync(req);
while(res != null)
{
// handle items
res = await res.Next!();
}
Parameter |
Type |
Required |
Description |
request |
CrmContactsAllRequest |
✔️ |
The request object to use for the request. |
CrmContactsAllResponse
Error Type |
Status Code |
Content Type |
ApideckUnifySdk.Models.Errors.BadRequestResponse |
400 |
application/json |
ApideckUnifySdk.Models.Errors.UnauthorizedResponse |
401 |
application/json |
ApideckUnifySdk.Models.Errors.PaymentRequiredResponse |
402 |
application/json |
ApideckUnifySdk.Models.Errors.NotFoundResponse |
404 |
application/json |
ApideckUnifySdk.Models.Errors.UnprocessableResponse |
422 |
application/json |
ApideckUnifySdk.Models.Errors.APIException |
4XX, 5XX |
*/* |
Create contact
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
using System.Collections.Generic;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
CrmContactsAddRequest req = new CrmContactsAddRequest() {
Contact = new ContactInput() {
Name = "Elon Musk",
OwnerId = "54321",
Type = ContactType.Personal,
CompanyId = "23456",
CompanyName = "23456",
LeadId = "34567",
FirstName = "Elon",
MiddleName = "D.",
LastName = "Musk",
Prefix = "Mr.",
Suffix = "PhD",
Title = "CEO",
Department = "Engineering",
Language = "EN",
Gender = ContactGender.Female,
Birthday = "2000-08-12",
PhotoUrl = "https://unavatar.io/elon-musk",
LeadSource = "Cold Call",
Fax = "+12129876543",
Description = "Internal champion",
CurrentBalance = 10.5D,
Status = "open",
Active = true,
Websites = new List<Website>() {
new Website() {
Id = "12345",
Url = "http://example.com",
Type = WebsiteType.Primary,
},
},
Addresses = new List<Address>() {
new Address() {
Id = "123",
Type = ApideckUnifySdk.Models.Components.Type.Primary,
String = "25 Spring Street, Blackburn, VIC 3130",
Name = "HQ US",
Line1 = "Main street",
Line2 = "apt #",
Line3 = "Suite #",
Line4 = "delivery instructions",
StreetNumber = "25",
City = "San Francisco",
State = "CA",
PostalCode = "94104",
Country = "US",
Latitude = "40.759211",
Longitude = "-73.984638",
County = "Santa Clara",
ContactName = "Elon Musk",
Salutation = "Mr",
PhoneNumber = "111-111-1111",
Fax = "122-111-1111",
Email = "elon@musk.com",
Website = "https://elonmusk.com",
Notes = "Address notes or delivery instructions.",
RowVersion = "1-12345",
},
},
SocialLinks = new List<SocialLink>() {
new SocialLink() {
Id = "12345",
Url = "https://www.twitter.com/apideck",
Type = "twitter",
},
},
PhoneNumbers = new List<PhoneNumber>() {
new PhoneNumber() {
Id = "12345",
CountryCode = "1",
AreaCode = "323",
Number = "111-111-1111",
Extension = "105",
Type = PhoneNumberType.Primary,
},
},
Emails = new List<Email>() {
new Email() {
Id = "123",
Email = "elon@musk.com",
Type = EmailType.Primary,
},
},
EmailDomain = "gmail.com",
CustomFields = new List<CustomField>() {
new CustomField() {
Id = "2389328923893298",
Name = "employee_level",
Description = "Employee Level",
Value = Value.CreateBoolean(
true
),
},
},
Tags = new List<string>() {
"New",
},
OpportunityIds = new List<string>() {
"12345",
},
PassThrough = new List<PassThroughBody>() {
new PassThroughBody() {
ServiceId = "<id>",
ExtendPaths = new List<ExtendPaths>() {
new ExtendPaths() {
Path = "$.nested.property",
Value = new Dictionary<string, object>() {
{ "TaxClassificationRef", new Dictionary<string, object>() {
{ "value", "EUC-99990201-V1-00020000" },
} },
},
},
},
},
},
},
ServiceId = "salesforce",
};
var res = await sdk.Crm.Contacts.CreateAsync(req);
// handle response
Parameter |
Type |
Required |
Description |
request |
CrmContactsAddRequest |
✔️ |
The request object to use for the request. |
CrmContactsAddResponse
Error Type |
Status Code |
Content Type |
ApideckUnifySdk.Models.Errors.BadRequestResponse |
400 |
application/json |
ApideckUnifySdk.Models.Errors.UnauthorizedResponse |
401 |
application/json |
ApideckUnifySdk.Models.Errors.PaymentRequiredResponse |
402 |
application/json |
ApideckUnifySdk.Models.Errors.NotFoundResponse |
404 |
application/json |
ApideckUnifySdk.Models.Errors.UnprocessableResponse |
422 |
application/json |
ApideckUnifySdk.Models.Errors.APIException |
4XX, 5XX |
*/* |
Get contact
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
CrmContactsOneRequest req = new CrmContactsOneRequest() {
Id = "<id>",
ServiceId = "salesforce",
Fields = "id,updated_at",
Filter = new ContactsFilter() {
FirstName = "Elon",
LastName = "Musk",
Email = "elon@tesla.com",
CompanyId = "12345",
OwnerId = "12345",
},
};
var res = await sdk.Crm.Contacts.GetAsync(req);
// handle response
Parameter |
Type |
Required |
Description |
request |
CrmContactsOneRequest |
✔️ |
The request object to use for the request. |
CrmContactsOneResponse
Error Type |
Status Code |
Content Type |
ApideckUnifySdk.Models.Errors.BadRequestResponse |
400 |
application/json |
ApideckUnifySdk.Models.Errors.UnauthorizedResponse |
401 |
application/json |
ApideckUnifySdk.Models.Errors.PaymentRequiredResponse |
402 |
application/json |
ApideckUnifySdk.Models.Errors.NotFoundResponse |
404 |
application/json |
ApideckUnifySdk.Models.Errors.UnprocessableResponse |
422 |
application/json |
ApideckUnifySdk.Models.Errors.APIException |
4XX, 5XX |
*/* |
Update contact
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
using System.Collections.Generic;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
CrmContactsUpdateRequest req = new CrmContactsUpdateRequest() {
Id = "<id>",
Contact = new ContactInput() {
Name = "Elon Musk",
OwnerId = "54321",
Type = ContactType.Personal,
CompanyId = "23456",
CompanyName = "23456",
LeadId = "34567",
FirstName = "Elon",
MiddleName = "D.",
LastName = "Musk",
Prefix = "Mr.",
Suffix = "PhD",
Title = "CEO",
Department = "Engineering",
Language = "EN",
Gender = ContactGender.Female,
Birthday = "2000-08-12",
PhotoUrl = "https://unavatar.io/elon-musk",
LeadSource = "Cold Call",
Fax = "+12129876543",
Description = "Internal champion",
CurrentBalance = 10.5D,
Status = "open",
Active = true,
Websites = new List<Website>() {
new Website() {
Id = "12345",
Url = "http://example.com",
Type = WebsiteType.Primary,
},
},
Addresses = new List<Address>() {
new Address() {
Id = "123",
Type = ApideckUnifySdk.Models.Components.Type.Primary,
String = "25 Spring Street, Blackburn, VIC 3130",
Name = "HQ US",
Line1 = "Main street",
Line2 = "apt #",
Line3 = "Suite #",
Line4 = "delivery instructions",
StreetNumber = "25",
City = "San Francisco",
State = "CA",
PostalCode = "94104",
Country = "US",
Latitude = "40.759211",
Longitude = "-73.984638",
County = "Santa Clara",
ContactName = "Elon Musk",
Salutation = "Mr",
PhoneNumber = "111-111-1111",
Fax = "122-111-1111",
Email = "elon@musk.com",
Website = "https://elonmusk.com",
Notes = "Address notes or delivery instructions.",
RowVersion = "1-12345",
},
},
SocialLinks = new List<SocialLink>() {
new SocialLink() {
Id = "12345",
Url = "https://www.twitter.com/apideck",
Type = "twitter",
},
},
PhoneNumbers = new List<PhoneNumber>() {
new PhoneNumber() {
Id = "12345",
CountryCode = "1",
AreaCode = "323",
Number = "111-111-1111",
Extension = "105",
Type = PhoneNumberType.Primary,
},
},
Emails = new List<Email>() {
new Email() {
Id = "123",
Email = "elon@musk.com",
Type = EmailType.Primary,
},
},
EmailDomain = "gmail.com",
CustomFields = new List<CustomField>() {
new CustomField() {
Id = "2389328923893298",
Name = "employee_level",
Description = "Employee Level",
Value = Value.CreateArrayOf6(
new List<Six>() {
new Six() {},
}
),
},
},
Tags = new List<string>() {
"New",
},
OpportunityIds = new List<string>() {
"12345",
},
PassThrough = new List<PassThroughBody>() {
new PassThroughBody() {
ServiceId = "<id>",
ExtendPaths = new List<ExtendPaths>() {
new ExtendPaths() {
Path = "$.nested.property",
Value = new Dictionary<string, object>() {
{ "TaxClassificationRef", new Dictionary<string, object>() {
{ "value", "EUC-99990201-V1-00020000" },
} },
},
},
},
},
},
},
ServiceId = "salesforce",
};
var res = await sdk.Crm.Contacts.UpdateAsync(req);
// handle response
CrmContactsUpdateResponse
Error Type |
Status Code |
Content Type |
ApideckUnifySdk.Models.Errors.BadRequestResponse |
400 |
application/json |
ApideckUnifySdk.Models.Errors.UnauthorizedResponse |
401 |
application/json |
ApideckUnifySdk.Models.Errors.PaymentRequiredResponse |
402 |
application/json |
ApideckUnifySdk.Models.Errors.NotFoundResponse |
404 |
application/json |
ApideckUnifySdk.Models.Errors.UnprocessableResponse |
422 |
application/json |
ApideckUnifySdk.Models.Errors.APIException |
4XX, 5XX |
*/* |
Delete contact
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
CrmContactsDeleteRequest req = new CrmContactsDeleteRequest() {
Id = "<id>",
ServiceId = "salesforce",
};
var res = await sdk.Crm.Contacts.DeleteAsync(req);
// handle response
CrmContactsDeleteResponse
Error Type |
Status Code |
Content Type |
ApideckUnifySdk.Models.Errors.BadRequestResponse |
400 |
application/json |
ApideckUnifySdk.Models.Errors.UnauthorizedResponse |
401 |
application/json |
ApideckUnifySdk.Models.Errors.PaymentRequiredResponse |
402 |
application/json |
ApideckUnifySdk.Models.Errors.NotFoundResponse |
404 |
application/json |
ApideckUnifySdk.Models.Errors.UnprocessableResponse |
422 |
application/json |
ApideckUnifySdk.Models.Errors.APIException |
4XX, 5XX |
*/* |