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":"9a164b5f-4d8a-4c67-a356-115670f39fb2","sub_account_uuid":"bcb274e5-bacd-4cbf-a42d-85119b20fd1e","valuations":[{"value":100000,"valued_at":"2025-01-01","bulk_reference_uuid":"a843b7f9-0638-498c-ac70-f1aa8cf68632"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "9a164b5f-4d8a-4c67-a356-115670f39fb2",
"sub_account_uuid": "bcb274e5-bacd-4cbf-a42d-85119b20fd1e",
"valuations": [
{
"value": 100000,
"valued_at": "2025-01-01",
"bulk_reference_uuid": "a843b7f9-0638-498c-ac70-f1aa8cf68632"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}