WebCrmApiReadPossibleQuotations Method |
Returns a list of possible quotations.
Namespace: dk.webCRM.ApiSync.WebServiceAssembly: dk.webCRM.ApiSync.WebService (in dk.webCRM.ApiSync.WebService.dll) Version: 2.0.0.5 (2.0.0.5)
Syntaxpublic ReadPossibleQuotationsResult ReadPossibleQuotations()
Public Function ReadPossibleQuotations As ReadPossibleQuotationsResult
public:
ReadPossibleQuotationsResult^ ReadPossibleQuotations()
member ReadPossibleQuotations : unit -> ReadPossibleQuotationsResult
Return Value
Type:
ReadPossibleQuotationsResultReturns error status and the list of possible quotations.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
ReadPossibleQuotationsResult result = proxy.ReadPossibleQuotations(ticket);
See Also