POST Board/ProjectView

Request Information

URI Parameters

None.

Body Parameters

BoardReqModel
NameDescriptionTypeAdditional information
CompanyName

string

None.

Userid

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResultQueryOfProjectModel
NameDescriptionTypeAdditional information
Success

integer

None.

Msg

string

None.

DataContent

ProjectModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": 1,
  "Msg": "sample string 2",
  "DataContent": {
    "ProphaseNum": 1.1,
    "NewNum": 2.1,
    "BatchNum": 3.1,
    "EndNum": 4.1,
    "PTotal": 5,
    "PYearTotal": 6
  }
}

application/xml, text/xml

Sample:
<BaseResultQueryOfProjectModeltZAf4S1t 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:BatchNum>3.1</d2p1:BatchNum>
    <d2p1:EndNum>4.1</d2p1:EndNum>
    <d2p1:NewNum>2.1</d2p1:NewNum>
    <d2p1:PTotal>5</d2p1:PTotal>
    <d2p1:PYearTotal>6</d2p1:PYearTotal>
    <d2p1:ProphaseNum>1.1</d2p1:ProphaseNum>
  </DataContent>
  <Msg>sample string 2</Msg>
  <Success>1</Success>
</BaseResultQueryOfProjectModeltZAf4S1t>