POST api/v1/memberApplication/{applicationID}/submitEmploymentHistory

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicationID

string

Required

Body Parameters

EmploymentHistory
NameDescriptionTypeAdditional information
gem_employeehistoryid

string

None.

gem_memberapplicationid

string

None.

gem_nameofemployer

string

None.

gem_employmentstartdate

date

None.

gem_employmentenddate

date

None.

gem_reasonforleaving

string

None.

Request Formats

application/json, text/json

Sample:
{
  "employeehistoryid": "sample string 1",
  "MemberAppicationGuid": "sample string 2",
  "NameOfEmployer": "sample string 3",
  "EmploymentStartDate": "2025-06-14T15:31:45.5704343+00:00",
  "EmploymentEndDate": "2025-06-14T15:31:45.5704343+00:00",
  "ReasonForLeaving": "sample string 4"
}

application/xml, text/xml

Sample:
<EmploymentHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GEMS.Eforms.Models">
  <EmploymentEndDate>2025-06-14T15:31:45.5704343+00:00</EmploymentEndDate>
  <EmploymentStartDate>2025-06-14T15:31:45.5704343+00:00</EmploymentStartDate>
  <MemberAppicationGuid>sample string 2</MemberAppicationGuid>
  <NameOfEmployer>sample string 3</NameOfEmployer>
  <ReasonForLeaving>sample string 4</ReasonForLeaving>
  <employeehistoryid>sample string 1</employeehistoryid>
</EmploymentHistory>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.