POST api/ApiIntegration/GetProjectQuoteInfo
Request Information
URI Parameters
None.
Body Parameters
ApiGetProjectParam| Name | Description | Type | Additional information |
|---|---|---|---|
| PrivateApiKey | string |
None. |
|
| Project | ApiProjectModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"privateApiKey": "sample string 1",
"project": {
"privateApiKey": "sample string 1",
"projectKey": "b2747581-d16c-45dc-ba16-77d796ee61bc",
"projectName": "sample string 3"
}
}
application/xml, text/xml
Sample:
<ApiGetProjectParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
<PrivateApiKey>sample string 1</PrivateApiKey>
<Project>
<PrivateApiKey>sample string 1</PrivateApiKey>
<ProjectKey>b2747581-d16c-45dc-ba16-77d796ee61bc</ProjectKey>
<ProjectName>sample string 3</ProjectName>
</Project>
</ApiGetProjectParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiQuoteDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| apiResponse | ApiResponse |
None. |
|
| JobsInfo | Collection of ApiJobInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"apiResponse": {
"responseCode": 1,
"returnKey": "3abc1cbc-2db2-49ca-afef-d59ae46f7070",
"responseNote": "sample string 2"
},
"jobsInfo": [
{
"jobKey": "f7e4e2e0-a638-4ae2-9257-fd8135e368c7",
"jobName": "sample string 2",
"scenarioName": "sample string 3",
"estimator": "sample string 4",
"jobNote1": "sample string 5",
"jobNote2": "sample string 6",
"quoteNumber": "sample string 7",
"jobNumber": "sample string 8",
"quoteValue1": 1.0
},
{
"jobKey": "f7e4e2e0-a638-4ae2-9257-fd8135e368c7",
"jobName": "sample string 2",
"scenarioName": "sample string 3",
"estimator": "sample string 4",
"jobNote1": "sample string 5",
"jobNote2": "sample string 6",
"quoteNumber": "sample string 7",
"jobNumber": "sample string 8",
"quoteValue1": 1.0
}
]
}
application/xml, text/xml
Sample:
<ApiQuoteDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
<JobsInfo>
<ApiJobInfo>
<Estimator>sample string 4</Estimator>
<JobKey>f7e4e2e0-a638-4ae2-9257-fd8135e368c7</JobKey>
<JobName>sample string 2</JobName>
<JobNote1>sample string 5</JobNote1>
<JobNote2>sample string 6</JobNote2>
<JobNumber>sample string 8</JobNumber>
<QuoteNumber>sample string 7</QuoteNumber>
<QuoteValue1>1</QuoteValue1>
<ScenarioName>sample string 3</ScenarioName>
</ApiJobInfo>
<ApiJobInfo>
<Estimator>sample string 4</Estimator>
<JobKey>f7e4e2e0-a638-4ae2-9257-fd8135e368c7</JobKey>
<JobName>sample string 2</JobName>
<JobNote1>sample string 5</JobNote1>
<JobNote2>sample string 6</JobNote2>
<JobNumber>sample string 8</JobNumber>
<QuoteNumber>sample string 7</QuoteNumber>
<QuoteValue1>1</QuoteValue1>
<ScenarioName>sample string 3</ScenarioName>
</ApiJobInfo>
</JobsInfo>
<apiResponse>
<ResponseCode>1</ResponseCode>
<ResponseNote>sample string 2</ResponseNote>
<ReturnKey>3abc1cbc-2db2-49ca-afef-d59ae46f7070</ReturnKey>
</apiResponse>
</ApiQuoteDetails>