POST api/Reports/UpdateGroupsRepot

Request Information

URI Parameters

None.

Body Parameters

GroupReportData
NameDescriptionTypeAdditional information
group_nums

Collection of integer

None.

report_num

integer

None.

report_name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "group_nums": [
    1,
    2
  ],
  "report_num": 1,
  "report_name": "sample string 2"
}

application/xml, text/xml

Sample:
<GroupReportData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLMedical.Reports">
  <group_nums xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </group_nums>
  <report_name>sample string 2</report_name>
  <report_num>1</report_num>
</GroupReportData>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GroupReportData'.

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.