PUT account/employeeProfileExperience?id={id}

Request Information

URI Parameters

Name Description Type Additional information
id

integer (Int32)

Required

Body Parameters

employeeProfileExperiencePostModel
Name Description Type Additional information
firmName

string

Required

Max length: 128

sectorId

integer (Int32)

Required

position

string

Required

Max length: 128

startDate

date

Required

endDate

date

None.

stillWorking

boolean

Required

leaveReason

string

Max length: 128

explanation

string

Max length: 1024

Request Formats

application/json, text/json

Sample:
{
  "firmName": "sample string 1",
  "sectorId": 2,
  "position": "sample string 3",
  "startDate": "2024-05-05T08:07:38.6861372+03:00",
  "endDate": "2024-05-05T08:07:38.6861372+03:00",
  "stillWorking": true,
  "leaveReason": "sample string 6",
  "explanation": "sample string 7"
}

application/xml, text/xml

Sample:
<employeeProfileExperiencePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <endDate>2024-05-05T08:07:38.6861372+03:00</endDate>
  <explanation>sample string 7</explanation>
  <firmName>sample string 1</firmName>
  <leaveReason>sample string 6</leaveReason>
  <position>sample string 3</position>
  <sectorId>2</sectorId>
  <startDate>2024-05-05T08:07:38.6861372+03:00</startDate>
  <stillWorking>true</stillWorking>
</employeeProfileExperiencePostModel>

multipart/form-data

Sample:
<employeeProfileExperiencePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><endDate>2024-05-05T08:07:38.6861372+03:00</endDate><explanation>sample string 7</explanation><firmName>sample string 1</firmName><leaveReason>sample string 6</leaveReason><position>sample string 3</position><sectorId>2</sectorId><startDate>2024-05-05T08:07:38.6861372+03:00</startDate><stillWorking>true</stillWorking></employeeProfileExperiencePostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.