Skip to main content

AddSecurityValue

Stable

Signature

mutation {
AddSecurityValue(securityId: ..., price: ..., date: ...)
}

Retourne : Security

Arguments

NomTypeRequisDéfautDescription
securityIdID!
pricePreciseAmount!
dateDate!

Exemple

mutation {
AddSecurityValue(
securityId: $securityId
price: $price
date: $date
) {
id
type {}
securityType {}
securityTypeDetailed {}
name
stakes {}
company {}
nominalValue
distributionPeriodicity {}
securityFeePatterns {}
defaultSecurityFeePattern {}
numberOfDecimals
latestValue {}
remainingParticipations {}
securityValues {}
engagedInvestmentAmount
movements {}
}
}