POST api/EmployeeNativeAddress

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objDat
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "SL_ID": 1,
  "EMP_ID": 1,
  "EMP_NAME": "sample string 2",
  "ADDR1": "sample string 3",
  "ADDR2": "sample string 4",
  "CTRY_ID": 1,
  "CTRY_NAME": "sample string 5",
  "PHONE_CODE": "sample string 6",
  "PHONE_NO": "sample string 7",
  "ADDR3": "sample string 8",
  "IS_PRIMARY": true,
  "WF_EMP_ID": 1
}

application/xml, text/xml

Sample:
<EmployeeNativeAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ComsipApi.Models.EmployeeProfile">
  <ADDR1>sample string 3</ADDR1>
  <ADDR2>sample string 4</ADDR2>
  <ADDR3>sample string 8</ADDR3>
  <CTRY_ID>1</CTRY_ID>
  <CTRY_NAME>sample string 5</CTRY_NAME>
  <EMP_ID>1</EMP_ID>
  <EMP_NAME>sample string 2</EMP_NAME>
  <IS_PRIMARY>true</IS_PRIMARY>
  <PHONE_CODE>sample string 6</PHONE_CODE>
  <PHONE_NO>sample string 7</PHONE_NO>
  <SL_ID>1</SL_ID>
  <WF_EMP_ID>1</WF_EMP_ID>
</EmployeeNativeAddress>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmployeeNativeAddress'.