POST quote/forward/{quote}
Forwards a quote.
Request Information
URI
https://scoregroup-dev-api.xaitcpq.net/quote/forward/{quote}
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
quote |
Quote Identifier. |
globally unique identifier |
Required |
Body Parameters
The share.
ForwardQuoteName | Description | Type | Additional information |
---|---|---|---|
Share | globally unique identifier |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
|
string |
None. |
||
Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Share": "4b4ed42e-4c56-46e6-89c0-9ee5d7a0ca7f", "FirstName": "sample string 1", "LastName": "sample string 2", "Email": "sample string 3", "Message": "sample string 4" }
text/html
Sample:
{"Share":"4b4ed42e-4c56-46e6-89c0-9ee5d7a0ca7f","FirstName":"sample string 1","LastName":"sample string 2","Email":"sample string 3","Message":"sample string 4"}
application/xml, text/xml
Sample:
<ForwardQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels"> <Email>sample string 3</Email> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <Message>sample string 4</Message> <Share>4b4ed42e-4c56-46e6-89c0-9ee5d7a0ca7f</Share> </ForwardQuote>
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>