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":"994a6ae4-c52d-4d12-a05f-d94a67a1d59e","sub_account_uuid":"48efed9c-5a0b-42e4-ba53-bb78d842755b","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"04db485d-ad69-4ab4-a706-e45e67d36d0a"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "994a6ae4-c52d-4d12-a05f-d94a67a1d59e",
"sub_account_uuid": "48efed9c-5a0b-42e4-ba53-bb78d842755b",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "04db485d-ad69-4ab4-a706-e45e67d36d0a"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}