WebCrmApiSearchQuotationData Method |
Returns a list of quotation lines (=Product records) (max 10000) linked to the Opportunity.
The list is sorted by created date-time and contains all the field values for each Product record.
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 SearchQuotationDataResult SearchQuotationData(
long opportunityId
)
Public Function SearchQuotationData (
opportunityId As Long
) As SearchQuotationDataResult
public:
SearchQuotationDataResult^ SearchQuotationData(
long long opportunityId
)
member SearchQuotationData :
opportunityId : int64 -> SearchQuotationDataResult
Parameters
- opportunityId
- Type: SystemInt64
Opportunity id.
Return Value
Type:
SearchQuotationDataResultReturns error status and a list of quotation lines.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
SearchQuotationDataResult result = proxy.SearchQuotationData(ticket, 123);
See Also