GET Api/Applications/ByReferrer/{referrer}?startAt={startAt}&endAt={endAt}
Get all applications for a certain referrer.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
referrer |
Referrer |
string |
Required |
startAt |
Start Date |
string |
Required |
endAt |
End Date |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of
Collection of ApplicationReferrerResponseName | Description | Type | Additional information |
---|---|---|---|
ApplicantId |
applicant ID |
integer |
None. |
ApplicationId |
application ID |
integer |
None. |
JobId |
job ID |
integer |
None. |
FirstName |
applicant's firstname |
string |
None. |
LastName |
applicant's lastname |
string |
None. |
TitleBeforeName |
applicant's title before the name |
string |
None. |
TitleAfterName |
applicant's title after the name |
string |
None. |
Gender |
applicant's gender |
Gender |
None. |
Referrer |
referrer/creator of the application |
string |
None. |
ReferrerAdditionalInformation |
additional information from the referrer/creator of the application |
string |
None. |
WorkflowStatusGroup |
current status group of the applicant |
WorkflowStatusGroup |
None. |
WorkflowLastChange |
last workflow state change |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ApplicantId": 1, "ApplicationId": 2, "JobId": 3, "FirstName": "sample string 4", "LastName": "sample string 5", "TitleBeforeName": "sample string 6", "TitleAfterName": "sample string 7", "Gender": 0, "Referrer": "sample string 8", "ReferrerAdditionalInformation": "sample string 9", "WorkflowStatusGroup": 0, "WorkflowLastChange": "2024-12-28T06:27:04.7073811+01:00" }, { "ApplicantId": 1, "ApplicationId": 2, "JobId": 3, "FirstName": "sample string 4", "LastName": "sample string 5", "TitleBeforeName": "sample string 6", "TitleAfterName": "sample string 7", "Gender": 0, "Referrer": "sample string 8", "ReferrerAdditionalInformation": "sample string 9", "WorkflowStatusGroup": 0, "WorkflowLastChange": "2024-12-28T06:27:04.7073811+01:00" } ]
application/xml, text/xml
Sample:
<ArrayOfApplicationReferrerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses"> <ApplicationReferrerResponse> <ApplicantId>1</ApplicantId> <ApplicationId>2</ApplicationId> <FirstName>sample string 4</FirstName> <Gender>Unknown</Gender> <JobId>3</JobId> <LastName>sample string 5</LastName> <Referrer>sample string 8</Referrer> <ReferrerAdditionalInformation>sample string 9</ReferrerAdditionalInformation> <TitleAfterName>sample string 7</TitleAfterName> <TitleBeforeName>sample string 6</TitleBeforeName> <WorkflowLastChange>2024-12-28T06:27:04.7073811+01:00</WorkflowLastChange> <WorkflowStatusGroup>None</WorkflowStatusGroup> </ApplicationReferrerResponse> <ApplicationReferrerResponse> <ApplicantId>1</ApplicantId> <ApplicationId>2</ApplicationId> <FirstName>sample string 4</FirstName> <Gender>Unknown</Gender> <JobId>3</JobId> <LastName>sample string 5</LastName> <Referrer>sample string 8</Referrer> <ReferrerAdditionalInformation>sample string 9</ReferrerAdditionalInformation> <TitleAfterName>sample string 7</TitleAfterName> <TitleBeforeName>sample string 6</TitleBeforeName> <WorkflowLastChange>2024-12-28T06:27:04.7073811+01:00</WorkflowLastChange> <WorkflowStatusGroup>None</WorkflowStatusGroup> </ApplicationReferrerResponse> </ArrayOfApplicationReferrerResponse>