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":"9da1e7b6-f362-4fd0-b68b-3ee966a50480","sub_account_uuid":"ba1b1845-1628-4b6e-92d1-8b72d5c4ab61","valuations":[{"value":100000,"valued_at":"2025-01-01","bulk_reference_uuid":"403fae46-be6b-4c08-a998-ec57343e397c"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "9da1e7b6-f362-4fd0-b68b-3ee966a50480",
"sub_account_uuid": "ba1b1845-1628-4b6e-92d1-8b72d5c4ab61",
"valuations": [
{
"value": 100000,
"valued_at": "2025-01-01",
"bulk_reference_uuid": "403fae46-be6b-4c08-a998-ec57343e397c"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}