PUT Api/PlatformConnector/CandidateProfile

Edytuje obiekt Candidate

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "profileId": "d466a61a-f9e3-4d19-924b-7d8da850db5c",
  "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-18T05:32:38.4800782+00:00",
  "gender": "sample string 8"
}

multipart/form-data

Sample:
{"profileId":"d466a61a-f9e3-4d19-924b-7d8da850db5c","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-18T05:32:38.4800782+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>d466a61a-f9e3-4d19-924b-7d8da850db5c</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-18T05:32:38.4800782+00:00</DateOfBirth>
  <Gender>sample string 8</Gender>
</CandidateProfileDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.