GET Api/Agnostic/Applicants/ByGlobalId/{globalId}
Fetch applicant/mandator information for a global ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| globalId |
Global ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Applicant/Mandator Information
Collection of AgnosticApplicantsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Applicant ID |
integer |
None. |
| MandatorId |
Mandator ID |
integer |
None. |
| LastUpdated |
Date of last update by applicant |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"MandatorId": 2,
"LastUpdated": "2025-11-08T08:20:57.7045192+01:00"
},
{
"Id": 1,
"MandatorId": 2,
"LastUpdated": "2025-11-08T08:20:57.7045192+01:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfAgnosticApplicantsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
<AgnosticApplicantsResponse>
<Id>1</Id>
<LastUpdated>2025-11-08T08:20:57.7045192+01:00</LastUpdated>
<MandatorId>2</MandatorId>
</AgnosticApplicantsResponse>
<AgnosticApplicantsResponse>
<Id>1</Id>
<LastUpdated>2025-11-08T08:20:57.7045192+01:00</LastUpdated>
<MandatorId>2</MandatorId>
</AgnosticApplicantsResponse>
</ArrayOfAgnosticApplicantsResponse>