using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"QuoteVersionId\": 123\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({QuoteVersionId: 123})
};
fetch('http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'QuoteVersionId' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices"
payload = { "QuoteVersionId": 123 }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({QuoteVersionId: 123})
};
fetch('http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"IsOk": true,
"UserExplanation": "<string>",
"TechExplanation": "<string>",
"ErrorCode": "<string>",
"ChangedSale": {
"ContactName": "<string>",
"SaleDate": "2023-11-07T05:31:56Z",
"SaleId": 123,
"Probability": 123,
"Title": "<string>",
"Amount": 123,
"Currency": "<string>",
"ProjectName": "<string>",
"AssociateFullName": "<string>",
"Description": "<string>",
"Status": "Unknown",
"WeightedAmount": 123,
"ProjectId": 123,
"EarningPercent": 123,
"Earning": 123,
"ContactId": 123,
"AssociateId": 123,
"PersonId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"PersonFullName": "<string>",
"Completed": "Unknown",
"ActiveErpLinks": 123,
"NextDueDate": "2023-11-07T05:31:56Z",
"Number": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuote": {
"QuoteId": 123,
"SaleId": 123,
"QuoteConnectionId": 123,
"ERPQuoteKey": "<string>",
"ERPOrderKey": "<string>",
"ActiveQuoteVersionId": 123,
"AcceptedQuoteAlternativeId": 123,
"UseValuesFromQuote": 123,
"DocumentId": 123,
"PoNumber": "<string>",
"OrderComment": "<string>",
"PreferredEmailCulture": "<string>",
"ActiveQuoteVersion": {
"QuoteVersionId": 123,
"ERPQuoteVersionKey": "<string>",
"QuoteId": 123,
"Description": "<string>",
"Number": "<string>",
"State": "Unknown",
"ArchivedState": "Unknown",
"Status": "Ok",
"Reason": "<string>",
"LikelyQuoteAlternativeId": 123,
"SentDate": "2023-11-07T05:31:56Z",
"FollowupId": 123,
"ExpirationDate": "2023-11-07T05:31:56Z",
"DeliveryCountryId": 123,
"HasOwnDeliveryAddress": true,
"InvoiceCountryId": 123,
"HasOwnInvoiceAddress": true,
"ERPPaymentTermsKey": "<string>",
"ERPPaymentTypeKey": "<string>",
"ERPDeliveryTermsKey": "<string>",
"ERPDeliveryTypeKey": "<string>",
"Rank": 123,
"ApprovedBy": 123,
"ApprovedText": "<string>",
"ApprovedRegisteredBy": 123,
"ApprovedRegisteredDate": "2023-11-07T05:31:56Z",
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"LastRecalculated": "2023-11-07T05:31:56Z",
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"RequestAssociateId": 123,
"RequestComment": "<string>",
"QuoteAlternatives": [
{
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"FavoriteQuoteAlternative": {
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuoteVersion": {
"QuoteVersionId": 123,
"ERPQuoteVersionKey": "<string>",
"QuoteId": 123,
"Description": "<string>",
"Number": "<string>",
"State": "Unknown",
"ArchivedState": "Unknown",
"Status": "Ok",
"Reason": "<string>",
"LikelyQuoteAlternativeId": 123,
"SentDate": "2023-11-07T05:31:56Z",
"FollowupId": 123,
"ExpirationDate": "2023-11-07T05:31:56Z",
"DeliveryCountryId": 123,
"HasOwnDeliveryAddress": true,
"InvoiceCountryId": 123,
"HasOwnInvoiceAddress": true,
"ERPPaymentTermsKey": "<string>",
"ERPPaymentTypeKey": "<string>",
"ERPDeliveryTermsKey": "<string>",
"ERPDeliveryTypeKey": "<string>",
"Rank": 123,
"ApprovedBy": 123,
"ApprovedText": "<string>",
"ApprovedRegisteredBy": 123,
"ApprovedRegisteredDate": "2023-11-07T05:31:56Z",
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"LastRecalculated": "2023-11-07T05:31:56Z",
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"RequestAssociateId": 123,
"RequestComment": "<string>",
"QuoteAlternatives": [
{
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuoteAlternatives": [
{
"QuoteLinesHasChanged": true,
"ChangedQuoteAlternative": {
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Changes": {
"AddedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"UpdatedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"DeletedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Status": "Ok",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Update Quote Version Prices
Update price on the all the quotelines for each alternative in the current quote version
NsApiSlow threshold: 5000 ms.
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"QuoteVersionId\": 123\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({QuoteVersionId: 123})
};
fetch('http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'QuoteVersionId' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices"
payload = { "QuoteVersionId": 123 }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({QuoteVersionId: 123})
};
fetch('http://localhost:56350/api/v1/Agents/Quote/UpdateQuoteVersionPrices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"IsOk": true,
"UserExplanation": "<string>",
"TechExplanation": "<string>",
"ErrorCode": "<string>",
"ChangedSale": {
"ContactName": "<string>",
"SaleDate": "2023-11-07T05:31:56Z",
"SaleId": 123,
"Probability": 123,
"Title": "<string>",
"Amount": 123,
"Currency": "<string>",
"ProjectName": "<string>",
"AssociateFullName": "<string>",
"Description": "<string>",
"Status": "Unknown",
"WeightedAmount": 123,
"ProjectId": 123,
"EarningPercent": 123,
"Earning": 123,
"ContactId": 123,
"AssociateId": 123,
"PersonId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"PersonFullName": "<string>",
"Completed": "Unknown",
"ActiveErpLinks": 123,
"NextDueDate": "2023-11-07T05:31:56Z",
"Number": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuote": {
"QuoteId": 123,
"SaleId": 123,
"QuoteConnectionId": 123,
"ERPQuoteKey": "<string>",
"ERPOrderKey": "<string>",
"ActiveQuoteVersionId": 123,
"AcceptedQuoteAlternativeId": 123,
"UseValuesFromQuote": 123,
"DocumentId": 123,
"PoNumber": "<string>",
"OrderComment": "<string>",
"PreferredEmailCulture": "<string>",
"ActiveQuoteVersion": {
"QuoteVersionId": 123,
"ERPQuoteVersionKey": "<string>",
"QuoteId": 123,
"Description": "<string>",
"Number": "<string>",
"State": "Unknown",
"ArchivedState": "Unknown",
"Status": "Ok",
"Reason": "<string>",
"LikelyQuoteAlternativeId": 123,
"SentDate": "2023-11-07T05:31:56Z",
"FollowupId": 123,
"ExpirationDate": "2023-11-07T05:31:56Z",
"DeliveryCountryId": 123,
"HasOwnDeliveryAddress": true,
"InvoiceCountryId": 123,
"HasOwnInvoiceAddress": true,
"ERPPaymentTermsKey": "<string>",
"ERPPaymentTypeKey": "<string>",
"ERPDeliveryTermsKey": "<string>",
"ERPDeliveryTypeKey": "<string>",
"Rank": 123,
"ApprovedBy": 123,
"ApprovedText": "<string>",
"ApprovedRegisteredBy": 123,
"ApprovedRegisteredDate": "2023-11-07T05:31:56Z",
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"LastRecalculated": "2023-11-07T05:31:56Z",
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"RequestAssociateId": 123,
"RequestComment": "<string>",
"QuoteAlternatives": [
{
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"FavoriteQuoteAlternative": {
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuoteVersion": {
"QuoteVersionId": 123,
"ERPQuoteVersionKey": "<string>",
"QuoteId": 123,
"Description": "<string>",
"Number": "<string>",
"State": "Unknown",
"ArchivedState": "Unknown",
"Status": "Ok",
"Reason": "<string>",
"LikelyQuoteAlternativeId": 123,
"SentDate": "2023-11-07T05:31:56Z",
"FollowupId": 123,
"ExpirationDate": "2023-11-07T05:31:56Z",
"DeliveryCountryId": 123,
"HasOwnDeliveryAddress": true,
"InvoiceCountryId": 123,
"HasOwnInvoiceAddress": true,
"ERPPaymentTermsKey": "<string>",
"ERPPaymentTypeKey": "<string>",
"ERPDeliveryTermsKey": "<string>",
"ERPDeliveryTypeKey": "<string>",
"Rank": 123,
"ApprovedBy": 123,
"ApprovedText": "<string>",
"ApprovedRegisteredBy": 123,
"ApprovedRegisteredDate": "2023-11-07T05:31:56Z",
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"LastRecalculated": "2023-11-07T05:31:56Z",
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"RequestAssociateId": 123,
"RequestComment": "<string>",
"QuoteAlternatives": [
{
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ChangedQuoteAlternatives": [
{
"QuoteLinesHasChanged": true,
"ChangedQuoteAlternative": {
"QuoteAlternativeId": 123,
"ERPQuoteAlternativeKey": "<string>",
"QuoteVersionId": 123,
"Name": "<string>",
"Description": "<string>",
"Status": "Ok",
"Reason": "<string>",
"ERPDiscountPercent": 123,
"ERPDiscountAmount": 123,
"DiscountPercent": 123,
"DiscountAmount": 123,
"UserValueOverride": "None",
"VATInfo": "<string>",
"VAT": 123,
"EarningPercent": 123,
"EarningAmount": 123,
"SubTotal": 123,
"TotalPrice": 123,
"ExtraField1": "<string>",
"ExtraField2": "<string>",
"ExtraField3": "<string>",
"ExtraField4": "<string>",
"ExtraField5": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Changes": {
"AddedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"UpdatedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"DeletedRecords": [
{
"Tablename": "<string>",
"RecordId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"Status": "Ok",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Headers
Convert string references and multi-language values into a specified language (iso2) code.
Convert string references and multi-language values into a specified language (iso2) code. Overrides Accept-Language value.
Number, date formatting in a specified culture (iso2 language) code. Partially overrides SO-Language/Accept-Language value. Ignored if no Language set.
Specify the timezone code that you would like date/time responses converted to.
The application token that identifies the partner app. Used when calling Online WebAPI from a server.
Query Parameters
Optional comma separated list of properties to include in the result. Other fields are then nulled out to reduce payload size: "Name,department,category". Default = show all fields.
Body
QuoteVersionId
UpdateQuoteVersionPrices: Update price on the all the quotelines for each alternative in the current quote version
Response
OK
The QuoteVersionValidated is returned after a call to ValidateQuoteAlternative. It contains flags indicating changes to quote, quoteversion/quotealternative and quotelines. Carrier object for QuoteVersionValidated. Services for the QuoteVersionValidated Carrier is available from the Quote Agent.
Answer to the question / An indication if the operation went well. Equivalent to Status != Error.
A localized explanation to the answer.
Always in English
An error code, if available.
Carrier object for Sale. Services for the Sale Carrier is available from the Sale Agent.
Show child attributes
Show child attributes
Quote carrier with the active quote version and favorite alternative. Carrier object for Quote. Services for the Quote Carrier is available from the Quote Agent.
Show child attributes
Show child attributes
Information about a version of the . Carrier object for QuoteVersion. Services for the QuoteVersion Carrier is available from the Quote Agent.
Show child attributes
Show child attributes
The changed QuoteAlternatives
Show child attributes
Show child attributes
QuoteStatus = Ok / OkWithInfo / Warn / Error. Error implies IsOk = false.
Ok, OkWithInfo, Warning, Error Wraps a table right together with an explanatory reason. Code can indicate why access is restricted.
Show child attributes
Show child attributes
Field property dictionary mapping field names to field access rights.
Show child attributes
Show child attributes
Related topics
Price calculations and field changesIQuoteConnectorNSQuoteAgentNSQuoteVersionWorkflowStateCreate Or Update Quote Version AttachmentsEnum QuoteVersionButtonAction