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": "ca3fdc7f-5be8-42aa-ab04-20e2b8be3718",
"sub_account_uuid": "b784309f-e2ba-4ccc-bc27-a5769223acee",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "b34205f8-c824-4cd5-a31d-aa373cfd5431"
}
]
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "ca3fdc7f-5be8-42aa-ab04-20e2b8be3718",
"sub_account_uuid": "b784309f-e2ba-4ccc-bc27-a5769223acee",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "b34205f8-c824-4cd5-a31d-aa373cfd5431"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}