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":"2253a5f3-4e86-4724-86a9-8ae0366f4310","sub_account_uuid":"3b602074-0207-4d37-8a63-51cf52872874","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"4e4b2b48-b431-4780-a471-078f087fdc24"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "2253a5f3-4e86-4724-86a9-8ae0366f4310",
"sub_account_uuid": "3b602074-0207-4d37-8a63-51cf52872874",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "4e4b2b48-b431-4780-a471-078f087fdc24"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}