POST api/SaveCertReport

Request Information

URI Parameters

None.

Body Parameters

SaveCertReportRequest
NameDescriptionTypeAdditional information
UserEmail

string

None.

ProjectCode

string

None.

MCVendorCode

string

None.

UserList

Collection of CertReport_UserList

None.

WarrantyStart

string

None.

WarrantyEnd

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserEmail": "sample string 1",
  "ProjectCode": "sample string 2",
  "MCVendorCode": "sample string 3",
  "UserList": [
    {
      "Seq": 1,
      "PositionName": "sample string 2",
      "UserName": "sample string 3"
    },
    {
      "Seq": 1,
      "PositionName": "sample string 2",
      "UserName": "sample string 3"
    }
  ],
  "WarrantyStart": "sample string 4",
  "WarrantyEnd": "sample string 5"
}

application/xml, text/xml

Sample:
<SaveCertReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sirius_Api.Models.Sirius">
  <MCVendorCode>sample string 3</MCVendorCode>
  <ProjectCode>sample string 2</ProjectCode>
  <UserEmail>sample string 1</UserEmail>
  <UserList>
    <SaveCertReportRequest.CertReport_UserList>
      <PositionName>sample string 2</PositionName>
      <Seq>1</Seq>
      <UserName>sample string 3</UserName>
    </SaveCertReportRequest.CertReport_UserList>
    <SaveCertReportRequest.CertReport_UserList>
      <PositionName>sample string 2</PositionName>
      <Seq>1</Seq>
      <UserName>sample string 3</UserName>
    </SaveCertReportRequest.CertReport_UserList>
  </UserList>
  <WarrantyEnd>sample string 5</WarrantyEnd>
  <WarrantyStart>sample string 4</WarrantyStart>
</SaveCertReportRequest>

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 'SaveCertReportRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.