POST api/fees/category/save

Saves the Category data.

Request Information

URI Parameters

None.

Body Parameters

The data.

Systemic.Core.Fees.Master.mlFeeMaster+Category
NamedescriptionTypeAdditional information
CategorySysID

integer

None.

CategoryName

string

None.

FeeSysID

integer

None.

FeeName

string

None.

LedgerSysID

integer

None.

LedgerName

string

None.

BranchSysID

integer

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "CategorySysID": 1,
  "CategoryName": "sample string 2",
  "FeeSysID": 3,
  "FeeName": "sample string 4",
  "LedgerSysID": 5,
  "LedgerName": "sample string 6",
  "BranchSysID": 7
}

text/xml

Sample:
<mlFeeMaster.Category xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.Core.Fees.Master">
  <BranchSysID>7</BranchSysID>
  <CategoryName>sample string 2</CategoryName>
  <CategorySysID>1</CategorySysID>
  <FeeName>sample string 4</FeeName>
  <FeeSysID>3</FeeSysID>
  <LedgerName>sample string 6</LedgerName>
  <LedgerSysID>5</LedgerSysID>
</mlFeeMaster.Category>

response Information

Resource description

ServerResponse.

Api.Server.ServerResponse
NamedescriptionTypeAdditional information
response

string

None.

success

Api.Server.MlSuccess

None.

failure

Api.Server.MlError

None.

response Formats

application/json, text/json, text/html

Sample:
{
  "response": "sample string 1",
  "success": null,
  "failure": null
}

text/xml

Sample:
<ServerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Server">
  <failure i:nil="true" />
  <response>sample string 1</response>
  <success i:nil="true" />
</ServerResponse>