PUT api/contacts/{id}/education

Updates a contact's education properties.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

ContactEducation
NameDescriptionTypeAdditional information
HighestEducationLevelObtained

OptionSetValueModel

None.

EarnedDate

date

None.

StudentStatus

OptionSetValueModel

None.

DegreeSpeciality

IdNamePair

None.

EducationalInstitute

IdNamePair

None.

Request Formats

application/json, text/json

Sample:
{
  "HighestEducationLevelObtained": {
    "Label": "sample string 1",
    "Value": 2
  },
  "EarnedDate": "2024-07-15T01:46:00.7037027-04:00",
  "StudentStatus": {
    "Label": "sample string 1",
    "Value": 2
  },
  "DegreeSpeciality": {
    "Id": "6438c0f4-b5e6-4c6e-8c16-c5ff48d7bf3a",
    "Name": "sample string 2"
  },
  "EducationalInstitute": {
    "Id": "6438c0f4-b5e6-4c6e-8c16-c5ff48d7bf3a",
    "Name": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ContactEducation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
  <DegreeSpeciality xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Id>6438c0f4-b5e6-4c6e-8c16-c5ff48d7bf3a</d2p1:Id>
    <d2p1:Name>sample string 2</d2p1:Name>
  </DegreeSpeciality>
  <EarnedDate>2024-07-15T01:46:00.7037027-04:00</EarnedDate>
  <EducationalInstitute xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Id>6438c0f4-b5e6-4c6e-8c16-c5ff48d7bf3a</d2p1:Id>
    <d2p1:Name>sample string 2</d2p1:Name>
  </EducationalInstitute>
  <HighestEducationLevelObtained xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Label>sample string 1</d2p1:Label>
    <d2p1:Value>2</d2p1:Value>
  </HighestEducationLevelObtained>
  <StudentStatus xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Label>sample string 1</d2p1:Label>
    <d2p1:Value>2</d2p1:Value>
  </StudentStatus>
</ContactEducation>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.