POST api/Project/OpenProject

Request Information

URI Parameters

None.

Body Parameters

OpenProjectParameterDto
NameDescriptionTypeAdditional information
ProjectName

string

None.

JobName

string

None.

QuoteNumber

string

None.

JobNumber

string

None.

PurchaseOrder

string

None.

KeyPress

KeyPressParameters

None.

Request Formats

application/json, text/json

Sample:
{
  "projectName": "sample string 1",
  "jobName": "sample string 2",
  "quoteNumber": "sample string 3",
  "jobNumber": "sample string 4",
  "purchaseOrder": "sample string 5",
  "keyPress": {
    "ctrlKey": true,
    "shiftKey": true,
    "altKey": true
  }
}

application/xml, text/xml

Sample:
<OpenProjectParameterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto">
  <JobName>sample string 2</JobName>
  <JobNumber>sample string 4</JobNumber>
  <KeyPress xmlns:d2p1="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto.Parameter">
    <d2p1:AltKey>true</d2p1:AltKey>
    <d2p1:CtrlKey>true</d2p1:CtrlKey>
    <d2p1:ShiftKey>true</d2p1:ShiftKey>
  </KeyPress>
  <ProjectName>sample string 1</ProjectName>
  <PurchaseOrder>sample string 5</PurchaseOrder>
  <QuoteNumber>sample string 3</QuoteNumber>
</OpenProjectParameterDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>