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":"f7c5f683-6042-490e-95a7-e0fd92c55c19","sub_account_uuid":"a92795c5-d6e9-48cd-a114-878392ba7e9c","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"428dff06-34f0-40d5-a098-bbc32f875988"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "f7c5f683-6042-490e-95a7-e0fd92c55c19",
"sub_account_uuid": "a92795c5-d6e9-48cd-a114-878392ba7e9c",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "428dff06-34f0-40d5-a098-bbc32f875988"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}