POST api/MasterBOM/UpdateMasterBOMName

Request Information

URI Parameters

None.

Body Parameters

Abc_MasterBOMSetting
NameDescriptionTypeAdditional information
ID

integer

None.

Master_BOM_FileName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Master_BOM_FileName": "sample string 2"
}

application/xml, text/xml

Sample:
<Abc_MasterBOMSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Basic.Models">
  <ID>1</ID>
  <Master_BOM_FileName>sample string 2</Master_BOM_FileName>
</Abc_MasterBOMSetting>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultDataOfDictionaryOfStringAndObject
NameDescriptionTypeAdditional information
status

integer

None.

msg

string

None.

data

Dictionary of string [key] and Object [value]

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "msg": "sample string 2",
  "data": {
    "sample string 1": {},
    "sample string 3": {}
  }
}

application/xml, text/xml

Sample:
<ResultDataOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Result">
  <data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </data>
  <msg>sample string 2</msg>
  <status>1</status>
</ResultDataOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj>