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":"471e3631-5913-43b7-8ad2-e4587476665a","sub_account_uuid":"1d7840a9-770a-4a7b-bb5c-66e9b2d03cdb","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"163ab663-60e9-4cea-9d2c-6b84e535f91d"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "471e3631-5913-43b7-8ad2-e4587476665a",
"sub_account_uuid": "1d7840a9-770a-4a7b-bb5c-66e9b2d03cdb",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "163ab663-60e9-4cea-9d2c-6b84e535f91d"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}