curl --request POST \
--url https://api.example.com/policies/{policyId}/manual-quote \
--header 'Content-Type: application/json' \
--data '
{
"components": [
{
"id": "<string>",
"premium": {
"amountPreFeesAndTaxes": 123,
"totalFees": 123,
"totalTaxes": 123
},
"calculatePremiumBrokerFees": true
}
],
"percentages": [
{
"id": "<string>",
"componentIds": [
"<string>"
],
"amountPropertiesFrom": [],
"percentage": 50
}
]
}
'