Click or drag to resize
WebCrmApiReadPossibleQuotations Method
Returns a list of possible quotations.

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 ReadPossibleQuotationsResult ReadPossibleQuotations()

Return Value

Type: ReadPossibleQuotationsResult
Returns error status and the list of possible quotations.
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 possible quotations
ReadPossibleQuotationsResult result = proxy.ReadPossibleQuotations(ticket);
See Also