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":"b33de96f-0ac7-4056-9471-4dc28d4f97e8","sub_account_uuid":"709ce644-e914-42f2-baf8-b615979519a4","valuations":[{"value":100000,"valued_at":"2025-01-01","bulk_reference_uuid":"7f7dffd9-faa5-4bf1-a33d-4db7d1fc8724"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "b33de96f-0ac7-4056-9471-4dc28d4f97e8",
"sub_account_uuid": "709ce644-e914-42f2-baf8-b615979519a4",
"valuations": [
{
"value": 100000,
"valued_at": "2025-01-01",
"bulk_reference_uuid": "7f7dffd9-faa5-4bf1-a33d-4db7d1fc8724"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}