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":"693d7428-ca23-40eb-8dca-2e25a19c1242","sub_account_uuid":"1e8b8c73-f354-4ab7-887e-fe5fda7d055f","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"b5698df7-5b70-4a3d-b482-6aff8fde107a"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "693d7428-ca23-40eb-8dca-2e25a19c1242",
"sub_account_uuid": "1e8b8c73-f354-4ab7-887e-fe5fda7d055f",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "b5698df7-5b70-4a3d-b482-6aff8fde107a"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}