WebCrmApiSearchQuotationID Method |
Returns a list of ProductId’s (max 10000) linked to the Opportunity. The list is sorted by created date-time.
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 SearchQuotationIdResult SearchQuotationID(
long opportunityId
)
Public Function SearchQuotationID (
opportunityId As Long
) As SearchQuotationIdResult
public:
SearchQuotationIdResult^ SearchQuotationID(
long long opportunityId
)
member SearchQuotationID :
opportunityId : int64 -> SearchQuotationIdResult
Parameters
- opportunityId
- Type: SystemInt64
Opportunity id.
Return Value
Type:
SearchQuotationIdResultReturns error status and a list of ProductId’s.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
SearchQuotationIdResult result = proxy.SearchQuotationID(ticket, 123);
See Also