WebCrmApiReadQuotationLines Method |
Returns a list of quotation lines (max 10000).
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 ReadQuotationLinesResult ReadQuotationLines(
long opportunityId
)
Public Function ReadQuotationLines (
opportunityId As Long
) As ReadQuotationLinesResult
public:
ReadQuotationLinesResult^ ReadQuotationLines(
long long opportunityId
)
member ReadQuotationLines :
opportunityId : int64 -> ReadQuotationLinesResult
Parameters
- opportunityId
- Type: SystemInt64
Opportunity/Delivery id.
Return Value
Type:
ReadQuotationLinesResultReturns error status and the list of quotation lines.
Examples
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus;
TicketHeader ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus);
ReadQuotationLinesResult result = proxy.ReadQuotationLines(ticket, 111);
See Also