Indicates whether the quote is accepted or not. The ID of the newly created cart object
Code Sample
The following sample enables you to accepts quote with a Quote ID. Provide a Quote ID of the Quote or Proposal you want to accept. If the quote is successfully accepted, the API returns true, otherwise, the API returns false.
/**
* Accepts the given quote/proposal
* @param quoteOrProposalId the id of the quote/proposal sobject to accept
* @return <code>true</code> if the operation was successful, <code>false</code> otherwise
*/
WebService static Boolean acceptQuote(ID quoteOrProposalId) {
Id quoteOrProposalId = 'a0Y3C000000u2xv';
Boolean isSuccess = Apttus_QPConfig.QPConfigWebService.acceptQuote(quoteOrProposalId);
}
CODE
Integration Details
Use the following information in your integrations with CPQ Web Services API. Refer to Integrating Conga with External Systems for information on how to get started.