Retrieve proposal by ID
Last updated: 08-Jul-2020
Use the getProposalById method via SOAP APIv6 to retrieve a proposal/quote using a specific ID.
Parameters | Type | Required/Optional | Description |
---|---|---|---|
proposalId | String |
Required |
The unique merchant proposal ID generated by the 2Checkout system. |
sessionId | String | Required | Unique 2Checkout session ID code. |
<?php
require ('PATH_TO_AUTH');
$proposalID = "0573e71d-38bb-4d61-88ca-b3c557517c68";
try {
$result = $soapClient->getProposalById($sessionID, $proposalID);
echo "Proposal: </br>",
var_dump($result);
}
catch (SoapFault $e) {
echo "Could not fetch proposal: " . $e->getMessage();
exit;
}
The getProposalById call via SOAP APIv6 returns the Proposal object.