GET Api/PlatformConnector/CandidateProfiles/{profileId}

Wyszukuje object Candidate po jego identyfikatorze

Request Information

URI Parameters

NameDescriptionTypeAdditional information
profileId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

obiekt Candidate posiadajÄ…cy wybrany identyfikator

CandidateProfileDto
NameDescriptionTypeAdditional information
ProfileId

globally unique identifier

Required

TypeOfIdentity

string

None.

FirstName

string

None.

LastName

string

None.

IdentityNumber

string

None.

IdentitySeries

string

None.

Pesel

string

None.

DateOfBirth

date

None.

Gender

string

None.

Response Formats

application/json, text/json

Sample:
{
  "profileId": "3a35068a-3464-4159-ba2e-18cc8b6254fc",
  "typeOfIdentity": "sample string 2",
  "firstName": "sample string 3",
  "lastName": "sample string 4",
  "identityNumber": "sample string 5",
  "identitySeries": "sample string 6",
  "pesel": "sample string 7",
  "dateOfBirth": "2024-05-18T04:55:34.3479505+00:00",
  "gender": "sample string 8"
}

multipart/form-data

Sample:
{"profileId":"3a35068a-3464-4159-ba2e-18cc8b6254fc","typeOfIdentity":"sample string 2","firstName":"sample string 3","lastName":"sample string 4","identityNumber":"sample string 5","identitySeries":"sample string 6","pesel":"sample string 7","dateOfBirth":"2024-05-18T04:55:34.3479505+00:00","gender":"sample string 8"}

application/xml, text/xml

Sample:
<CandidateProfileDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ProfileId>3a35068a-3464-4159-ba2e-18cc8b6254fc</ProfileId>
  <TypeOfIdentity>sample string 2</TypeOfIdentity>
  <FirstName>sample string 3</FirstName>
  <LastName>sample string 4</LastName>
  <IdentityNumber>sample string 5</IdentityNumber>
  <IdentitySeries>sample string 6</IdentitySeries>
  <Pesel>sample string 7</Pesel>
  <DateOfBirth>2024-05-18T04:55:34.3479505+00:00</DateOfBirth>
  <Gender>sample string 8</Gender>
</CandidateProfileDto>