GuidesRecipesAPI Reference
Log In
Guides

Create a new valuation transaction

Create a new valuation transaction of an asset

Value
HTTP MethodPOST
Path/api/transaction/valuation/{scopeId}
Request path parametersScope ID (string): An ID of the selected scope which can be acquired by the [Scope list API]
Request body parametersSee table below
ReferenceAPI Reference: https://apidocs.quantium.pe/reference/createnewvaluationrecord

Body parameters

Field NameData typeDescription
assetInternalIdstringAn asset's unique ID acquired from List of asset entity objects
valuationDatestringValuation date in "YYYY-MM-DD" format
valuationMethodIdintValuation method which can be acquired by ValuationMethod
fullyDilutedOwnershipPercentdoubleFully diluted ownership i.e. if 2% put 0.02
useValuePerUnitValuebooleantrue : The system will use valuePerUnit field to calculate unrealized gain/loss

false: The system will use assetFmv to calculate unrealized gain/loss
valuePerUnitdoubleValue per share
assetFmvdoubleTotal company value
currencyCodestringThe currency of value per share or total company value

🚧

Contact Quantium support for API reference of advanced valuation input based on other input methods (e.g. enterprise value as input)

{
  "assetInternalId": "string",				
  "valuationDate": "string",
  "valuationMethodId": 0,
  "fullyDilutedOwnershipPercent": 0,
  "useValuePerUnitValue": true,
  "valuePerUnit": 0,
  "assetFmv": 0,
  "currencyCode": "string"
}