Click or drag to resize
WebCrmApiReadQuotationLines Method
Returns a list of quotation lines (max 10000).

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 ReadQuotationLinesResult ReadQuotationLines(
	long opportunityId
)

Parameters

opportunityId
Type: SystemInt64
Opportunity/Delivery id.

Return Value

Type: ReadQuotationLinesResult
Returns error status and the 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
ReadQuotationLinesResult result = proxy.ReadQuotationLines(ticket, 111);
See Also