Authorization: ********************{
"customInvestmentId": 123,
"prices": [
{
"date": "2025-02-04",
"price": 123.45,
"note": "End of month valuation"
}
]
}curl --location --request POST '/v1/custominvestment/price/bulk?overwrite' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--data-raw '{
"customInvestmentId": 123,
"prices": [
{
"date": "2025-02-04",
"price": 123.45,
"note": "End of month valuation"
}
]
}'0