Click or drag to resize
WebCrmApiDeletePossibleQuotations Method
Deletes all 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 DeletePossibleQuotationsResult DeletePossibleQuotations()

Return Value

Type: DeletePossibleQuotationsResult
Returns error status and the amount of deleted possible quotations.
Examples
// Login and get a webservice ticket
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);

// Delete all possible quotations
DeletePossibleQuotationsResult result = proxy.DeletePossibleQuotations(ticket);
See Also