GET Api/Agnostic/Applicants/ByGlobalId/{globalId}

Fetch applicant/mandator information for a global ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
globalId

Global ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Applicant/Mandator Information

Collection of AgnosticApplicantsResponse
NameDescriptionTypeAdditional 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": "2024-09-03T12:31:12.5764516+02:00"
  },
  {
    "Id": 1,
    "MandatorId": 2,
    "LastUpdated": "2024-09-03T12:31:12.5764516+02: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>2024-09-03T12:31:12.5764516+02:00</LastUpdated>
    <MandatorId>2</MandatorId>
  </AgnosticApplicantsResponse>
  <AgnosticApplicantsResponse>
    <Id>1</Id>
    <LastUpdated>2024-09-03T12:31:12.5764516+02:00</LastUpdated>
    <MandatorId>2</MandatorId>
  </AgnosticApplicantsResponse>
</ArrayOfAgnosticApplicantsResponse>