POST api/JobTitle

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:
{
  "JOB_TITLE_ID": 1,
  "JOB_TITLE_NAME": "sample string 2",
  "DESCRIP": "sample string 3",
  "DEP_ID": 1,
  "BU_ID": 1,
  "BU_NAME": "sample string 4",
  "DEP_NAME": "sample string 5",
  "IS_MANAGER": true,
  "IS_SERGEANT": true
}

application/xml, text/xml

Sample:
<JobTitle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ComsipApi.Models.Resource">
  <BU_ID>1</BU_ID>
  <BU_NAME>sample string 4</BU_NAME>
  <DEP_ID>1</DEP_ID>
  <DEP_NAME>sample string 5</DEP_NAME>
  <DESCRIP>sample string 3</DESCRIP>
  <IS_MANAGER>true</IS_MANAGER>
  <IS_SERGEANT>true</IS_SERGEANT>
  <JOB_TITLE_ID>1</JOB_TITLE_ID>
  <JOB_TITLE_NAME>sample string 2</JOB_TITLE_NAME>
</JobTitle>

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 'JobTitle'.