POST api/Notice/Save

Request Information

URI Parameters

None.

Body Parameters

NoticeInfoDataModel
NameDescriptionTypeAdditional information
CompBindPass

boolean

None.

CompBindReject

boolean

None.

ProjCreate

boolean

None.

ProjComplete

boolean

None.

AmendmentCreate

boolean

None.

AmendmentComplete

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "CompBindPass": true,
  "CompBindReject": true,
  "ProjCreate": true,
  "ProjComplete": true,
  "AmendmentCreate": true,
  "AmendmentComplete": true
}

application/xml, text/xml

Sample:
<NoticeInfoDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models">
  <AmendmentComplete>true</AmendmentComplete>
  <AmendmentCreate>true</AmendmentCreate>
  <CompBindPass>true</CompBindPass>
  <CompBindReject>true</CompBindReject>
  <ProjComplete>true</ProjComplete>
  <ProjCreate>true</ProjCreate>
</NoticeInfoDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResOfString
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<HttpResOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models">
  <code>1</code>
  <data />
  <msg>sample string 2</msg>
</HttpResOfstring>