POST api/Project/OpenProject
Request Information
URI Parameters
None.
Body Parameters
OpenProjectParameterDto| Name | Description | Type | Additional information |
|---|---|---|---|
| JobUniqueId | globally unique identifier |
None. |
|
| 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:
{
"jobUniqueId": "44e1e345-60a7-40bb-8425-bb3f350e228d",
"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>
<JobUniqueId>44e1e345-60a7-40bb-8425-bb3f350e228d</JobUniqueId>
<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
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>