POST api/Breakdown?username={username}&empid={empid}&div={div}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

empid

integer

Required

div

integer

Required

Body Parameters

IntimationPost
NameDescriptionTypeAdditional information
ItemId

integer

None.

ItemCode

string

None.

ItemName

string

None.

ShiftDtl

string

None.

StdRsnDtl

string

None.

NatureofBrk

string

None.

Remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ItemId": 1,
  "ItemCode": "sample string 2",
  "ItemName": "sample string 3",
  "ShiftDtl": "sample string 4",
  "StdRsnDtl": "sample string 5",
  "NatureofBrk": "sample string 6",
  "Remarks": "sample string 7"
}

application/xml, text/xml

Sample:
<IntimationPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers">
  <ItemCode>sample string 2</ItemCode>
  <ItemId>1</ItemId>
  <ItemName>sample string 3</ItemName>
  <NatureofBrk>sample string 6</NatureofBrk>
  <Remarks>sample string 7</Remarks>
  <ShiftDtl>sample string 4</ShiftDtl>
  <StdRsnDtl>sample string 5</StdRsnDtl>
</IntimationPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

rtnMessage
NameDescriptionTypeAdditional information
result

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "result": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<rtnMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers">
  <message>sample string 2</message>
  <result>true</result>
</rtnMessage>