Click or drag to resize
WebCrmApiSearchQuotationData Method
Returns a list of quotation lines (=Product records) (max 10000) linked to the Opportunity. The list is sorted by created date-time and contains all the field values for each Product record.

Namespace: dk.webCRM.ApiSync.WebService
Assembly: dk.webCRM.ApiSync.WebService (in dk.webCRM.ApiSync.WebService.dll) Version: 2.0.0.5 (2.0.0.5)
Syntax
public SearchQuotationDataResult SearchQuotationData(
	long opportunityId
)

Parameters

opportunityId
Type: SystemInt64
Opportunity id.

Return Value

Type: SearchQuotationDataResult
Returns error status and a list of quotation lines.
Examples
// Login and get a webservice ticket
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);

// Get a list of quotation lines
SearchQuotationDataResult result = proxy.SearchQuotationData(ticket, 123);
See Also