(Ats.Applicants)
List Applicants
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"
);
AtsApplicantsAllRequest req = new AtsApplicantsAllRequest() {
ServiceId = "salesforce",
Filter = new ApplicantsFilter() {
JobId = "1234",
},
PassThrough = new Dictionary<string, object>() {
{ "search", "San Francisco" },
},
Fields = "id,updated_at",
};
AtsApplicantsAllResponse? res = await sdk.Ats.Applicants.ListAsync(req);
while(res != null)
{
// handle items
res = await res.Next!();
}
AtsApplicantsAllResponse
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 Applicant
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
using NodaTime;
using System.Collections.Generic;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
AtsApplicantsAddRequest req = new AtsApplicantsAddRequest() {
Applicant = new ApplicantInput() {
Name = "Elon Musk",
FirstName = "Elon",
LastName = "Musk",
MiddleName = "D.",
Initials = "EM",
Birthday = LocalDate.FromDateTime(System.DateTime.Parse("2000-08-12")),
CoverLetter = "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
PhotoUrl = "https://unavatar.io/elon-musk",
Headline = "PepsiCo, Inc, Central Perk",
Title = "CEO",
Emails = new List<Email>() {
new Email() {
Id = "123",
Email = "elon@musk.com",
Type = EmailType.Primary,
},
},
CustomFields = new List<CustomField>() {
new CustomField() {
Id = "2389328923893298",
Name = "employee_level",
Description = "Employee Level",
Value = Value.CreateBoolean(
true
),
},
},
PhoneNumbers = new List<PhoneNumber>() {
new PhoneNumber() {
Id = "12345",
CountryCode = "1",
AreaCode = "323",
Number = "111-111-1111",
Extension = "105",
Type = PhoneNumberType.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",
},
},
Websites = new List<Websites>() {
new Websites() {
Id = "12345",
Url = "http://example.com",
Type = ApplicantType.Primary,
},
},
SocialLinks = new List<SocialLinks>() {
new SocialLinks() {
Id = "12345",
Url = "https://www.twitter.com/apideck",
Type = "twitter",
},
},
StageId = "12345",
RecruiterId = "12345",
CoordinatorId = "12345",
ApplicationIds = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Applications = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Followers = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Sources = new List<string>() {
"Job site",
},
Confidential = false,
Anonymized = true,
Tags = new List<string>() {
"New",
},
Archived = false,
OwnerId = "54321",
RecordUrl = "https://app.intercom.io/contacts/12345",
Deleted = true,
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.Ats.Applicants.CreateAsync(req);
// handle response
AtsApplicantsAddResponse
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 Applicant
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
AtsApplicantsOneRequest req = new AtsApplicantsOneRequest() {
Id = "<id>",
ServiceId = "salesforce",
Fields = "id,updated_at",
};
var res = await sdk.Ats.Applicants.GetAsync(req);
// handle response
AtsApplicantsOneResponse
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 Applicant
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
using NodaTime;
using System.Collections.Generic;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
AtsApplicantsUpdateRequest req = new AtsApplicantsUpdateRequest() {
Id = "<id>",
Applicant = new ApplicantInput() {
Name = "Elon Musk",
FirstName = "Elon",
LastName = "Musk",
MiddleName = "D.",
Initials = "EM",
Birthday = LocalDate.FromDateTime(System.DateTime.Parse("2000-08-12")),
CoverLetter = "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
PhotoUrl = "https://unavatar.io/elon-musk",
Headline = "PepsiCo, Inc, Central Perk",
Title = "CEO",
Emails = new List<Email>() {
new Email() {
Id = "123",
Email = "elon@musk.com",
Type = EmailType.Primary,
},
},
CustomFields = new List<CustomField>() {
new CustomField() {
Id = "2389328923893298",
Name = "employee_level",
Description = "Employee Level",
Value = Value.CreateArrayOf6(
new List<Six>() {
new Six() {},
}
),
},
},
PhoneNumbers = new List<PhoneNumber>() {
new PhoneNumber() {
Id = "12345",
CountryCode = "1",
AreaCode = "323",
Number = "111-111-1111",
Extension = "105",
Type = PhoneNumberType.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",
},
},
Websites = new List<Websites>() {
new Websites() {
Id = "12345",
Url = "http://example.com",
Type = ApplicantType.Primary,
},
},
SocialLinks = new List<SocialLinks>() {
new SocialLinks() {
Id = "12345",
Url = "https://www.twitter.com/apideck",
Type = "twitter",
},
},
StageId = "12345",
RecruiterId = "12345",
CoordinatorId = "12345",
ApplicationIds = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Applications = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Followers = new List<string>() {
"a0d636c6-43b3-4bde-8c70-85b707d992f4",
"a98lfd96-43b3-4bde-8c70-85b707d992e6",
},
Sources = new List<string>() {
"Job site",
},
Confidential = false,
Anonymized = true,
Tags = new List<string>() {
"New",
},
Archived = false,
OwnerId = "54321",
RecordUrl = "https://app.intercom.io/contacts/12345",
Deleted = true,
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.Ats.Applicants.UpdateAsync(req);
// handle response
AtsApplicantsUpdateResponse
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 Applicant
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Components;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
consumerId: "test-consumer",
appId: "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX"
);
AtsApplicantsDeleteRequest req = new AtsApplicantsDeleteRequest() {
Id = "<id>",
ServiceId = "salesforce",
};
var res = await sdk.Ats.Applicants.DeleteAsync(req);
// handle response
AtsApplicantsDeleteResponse
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 |
*/* |