Click or drag to resize
WebCrmApiSearchQuotationID Method
Returns a list of ProductId’s (max 10000) linked to the Opportunity. The list is sorted by created date-time.

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 SearchQuotationIdResult SearchQuotationID(
	long opportunityId
)

Parameters

opportunityId
Type: SystemInt64
Opportunity id.

Return Value

Type: SearchQuotationIdResult
Returns error status and a list of ProductId’s.
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 ids
SearchQuotationIdResult result = proxy.SearchQuotationID(ticket, 123);
See Also