WebCrmApiDeletePossibleQuotations Method |
Deletes all 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 DeletePossibleQuotationsResult DeletePossibleQuotations()
Public Function DeletePossibleQuotations As DeletePossibleQuotationsResult
public:
DeletePossibleQuotationsResult^ DeletePossibleQuotations()
member DeletePossibleQuotations : unit -> DeletePossibleQuotationsResult
Return Value
Type:
DeletePossibleQuotationsResultReturns error status and the amount of deleted possible quotations.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
DeletePossibleQuotationsResult result = proxy.DeletePossibleQuotations(ticket);
See Also