Create a valuation
Headers
-
Content-Type string
-
Accept string
POST /api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/valuations
curl \
-X POST https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/subAccount_uuid/valuations \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"valued_at":"2024-11-20T13:24:03+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": "2024-11-20T13:24:03+00:00",
"value": 4000
}