POST quote/share/{quote}
Shares a quote.
Request Information
URI
https://ofd-api.blueprintcpq.net/quote/share/{quote}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| quote |
Quote Identifier. |
globally unique identifier |
Required |
Body Parameters
The share.
ShareQuote| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddresses | Collection of string |
None. |
|
| Documents | Collection of globally unique identifier |
None. |
|
| Role | globally unique identifier |
None. |
|
| Message | string |
None. |
|
| TermsAndConditions | globally unique identifier |
None. |
|
| UseWebDocument | boolean |
None. |
|
| WebDocument | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmailAddresses": [
"sample string 1",
"sample string 2"
],
"Documents": [
"2ba7b6a9-52f7-488f-a4e8-ae97a4520bb9",
"e8ce288e-7c7f-45c8-a8a6-51082ded1d6c"
],
"Role": "4fe396fa-9b23-49c7-be1c-0e0481005347",
"Message": "sample string 2",
"TermsAndConditions": "9e360ab5-2d9e-4c1b-adaa-b312ecddd6bc",
"UseWebDocument": true,
"WebDocument": "384b36be-ffb7-428e-9ddc-c54ed7d062c3"
}
text/html
Sample:
{"EmailAddresses":["sample string 1","sample string 2"],"Documents":["2ba7b6a9-52f7-488f-a4e8-ae97a4520bb9","e8ce288e-7c7f-45c8-a8a6-51082ded1d6c"],"Role":"4fe396fa-9b23-49c7-be1c-0e0481005347","Message":"sample string 2","TermsAndConditions":"9e360ab5-2d9e-4c1b-adaa-b312ecddd6bc","UseWebDocument":true,"WebDocument":"384b36be-ffb7-428e-9ddc-c54ed7d062c3"}
application/xml, text/xml
Sample:
<ShareQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
<Documents xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>2ba7b6a9-52f7-488f-a4e8-ae97a4520bb9</d2p1:guid>
<d2p1:guid>e8ce288e-7c7f-45c8-a8a6-51082ded1d6c</d2p1:guid>
</Documents>
<EmailAddresses xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</EmailAddresses>
<Message>sample string 2</Message>
<Role>4fe396fa-9b23-49c7-be1c-0e0481005347</Role>
<TermsAndConditions>9e360ab5-2d9e-4c1b-adaa-b312ecddd6bc</TermsAndConditions>
<UseWebDocument>true</UseWebDocument>
<WebDocument>384b36be-ffb7-428e-9ddc-c54ed7d062c3</WebDocument>
</ShareQuote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
True if it succeeds, false if it fails.
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>