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":"a535bd76-84a7-4f98-8e01-370972d19eb0","sub_account_uuid":"9dbef5c9-fdb6-48c5-8219-f6c2ec087d26","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"7f320ec8-faa2-4322-8f41-a002be63d5f3"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "a535bd76-84a7-4f98-8e01-370972d19eb0",
"sub_account_uuid": "9dbef5c9-fdb6-48c5-8219-f6c2ec087d26",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "7f320ec8-faa2-4322-8f41-a002be63d5f3"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}