Bulk insert valuations Run in API Explorer
Ask AI
Creates multiple valuations for a plan and sub-account
POST
/api/v2/valuations/bulk
curl \
--request POST 'https://api.plannrcrm.com/api/v2/valuations/bulk' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"plan_uuid":"4a5caeef-1612-4706-a206-9b841c5b0944","sub_account_uuid":"5646f7c7-f004-40ba-b222-9deb19f06bcf","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"a2dd3438-a728-4987-a458-58dbbc8893fa"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "4a5caeef-1612-4706-a206-9b841c5b0944",
"sub_account_uuid": "5646f7c7-f004-40ba-b222-9deb19f06bcf",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "a2dd3438-a728-4987-a458-58dbbc8893fa"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}