POST api/ApiIntegration/SBApiAddBlankQuote
Request Information
URI Parameters
None.
Body Parameters
ApiAddBlankQuote| Name | Description | Type | Additional information |
|---|---|---|---|
| PrivateApiKey | string |
None. |
|
| ProjectName | string |
None. |
|
| QuoteNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"privateApiKey": "sample string 1",
"projectName": "sample string 2",
"quoteNumber": "sample string 3"
}
application/xml, text/xml
Sample:
<ApiAddBlankQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <PrivateApiKey>sample string 1</PrivateApiKey> <ProjectName>sample string 2</ProjectName> <QuoteNumber>sample string 3</QuoteNumber> </ApiAddBlankQuote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ReturnKey | globally unique identifier |
None. |
|
| ResponseNote | string |
None. |
|
| ErrorString | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": 1,
"returnKey": "ab0607cf-95bf-43a3-b036-5e1560b1288d",
"responseNote": "sample string 2",
"errorString": "sample string 3"
}
application/xml, text/xml
Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <ErrorString>sample string 3</ErrorString> <ResponseCode>1</ResponseCode> <ResponseNote>sample string 2</ResponseNote> <ReturnKey>ab0607cf-95bf-43a3-b036-5e1560b1288d</ReturnKey> </ApiResponse>