POST api/PFDeductionPerc/Save

Request Information

URI Parameters

None.

Body Parameters

PFDeductionPercSaveVM
NameDescriptionTypeAdditional information
BookId

integer

Required

DeductionAccount

AccountMasterLookup

Required

Slno

integer

Required

DedType

string

Required

Matching regular expression pattern: A|P

DedRate

decimal number

Required

Status

string

Required

Matching regular expression pattern: A|I

CreateUser

integer

Required

CreateIp

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "DeductionAccount": {
    "AccountId": 1,
    "AccountName": "sample string 2"
  },
  "Slno": 2,
  "DedType": "sample string 3",
  "DedRate": 4.0,
  "Status": "sample string 5",
  "CreateUser": 6,
  "CreateIp": "sample string 7"
}

application/xml, text/xml

Sample:
<PFDeductionPercSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BookId>1</BookId>
  <CreateIp>sample string 7</CreateIp>
  <CreateUser>6</CreateUser>
  <DedRate>4</DedRate>
  <DedType>sample string 3</DedType>
  <DeductionAccount>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </DeductionAccount>
  <Slno>2</Slno>
  <Status>sample string 5</Status>
</PFDeductionPercSaveVM>

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.