Create a valuation
Headers
-
Content-Type string
-
Accept string
POST
/api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/valuations
curl \
--request POST https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/subAccount_uuid/valuations \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"valued_at":"2025-02-20T10:13:04+00:00","value":4000}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"valued_at": "2025-02-20T10:13:04+00:00",
"value": 4000
}