POST Board/ReportModel

Request Information

URI Parameters

None.

Body Parameters

BoardProReqModel
NameDescriptionTypeAdditional information
CompanyName

string

None.

year

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CompanyName": "sample string 1",
  "year": "sample string 2"
}

application/xml, text/xml

Sample:
<BoardProReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.Response">
  <CompanyName>sample string 1</CompanyName>
  <year>sample string 2</year>
</BoardProReqModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResultQueryOfReportModel
NameDescriptionTypeAdditional information
Success

integer

None.

Msg

string

None.

DataContent

ReportModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": 1,
  "Msg": "sample string 2",
  "DataContent": {
    "CurrReport": [
      {
        "MonthId": 1,
        "MNum": 2
      },
      {
        "MonthId": 1,
        "MNum": 2
      }
    ],
    "LastReport": [
      {
        "MonthId": 1,
        "MNum": 2
      },
      {
        "MonthId": 1,
        "MNum": 2
      }
    ]
  }
}

application/xml, text/xml

Sample:
<BaseResultQueryOfReportModeltZAf4S1t xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
  <DataContent xmlns:d2p1="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.Response">
    <d2p1:CurrReport>
      <d2p1:ReportView>
        <d2p1:MNum>2</d2p1:MNum>
        <d2p1:MonthId>1</d2p1:MonthId>
      </d2p1:ReportView>
      <d2p1:ReportView>
        <d2p1:MNum>2</d2p1:MNum>
        <d2p1:MonthId>1</d2p1:MonthId>
      </d2p1:ReportView>
    </d2p1:CurrReport>
    <d2p1:LastReport>
      <d2p1:ReportView>
        <d2p1:MNum>2</d2p1:MNum>
        <d2p1:MonthId>1</d2p1:MonthId>
      </d2p1:ReportView>
      <d2p1:ReportView>
        <d2p1:MNum>2</d2p1:MNum>
        <d2p1:MonthId>1</d2p1:MonthId>
      </d2p1:ReportView>
    </d2p1:LastReport>
  </DataContent>
  <Msg>sample string 2</Msg>
  <Success>1</Success>
</BaseResultQueryOfReportModeltZAf4S1t>