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":"34372fc0-9532-45ce-9902-20d07bd1e3d3","sub_account_uuid":"56ecce89-cc49-4b74-b859-70cbb2fd3c7e","valuations":[{"valued_at":"2025-01-01","value":100000,"bulk_reference_uuid":"4f62b8fd-3ffb-455c-932b-868c74685b2f"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"plan_uuid": "34372fc0-9532-45ce-9902-20d07bd1e3d3",
"sub_account_uuid": "56ecce89-cc49-4b74-b859-70cbb2fd3c7e",
"valuations": [
{
"valued_at": "2025-01-01",
"value": 100000,
"bulk_reference_uuid": "4f62b8fd-3ffb-455c-932b-868c74685b2f"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}