Skip to main content

CreateSecurityExitFee

Stable

Signature

mutation {
CreateSecurityExitFee(securityFeePatternId: ..., localizedName: ..., feeAtePercentage: ..., feeVatPercentage: ...)
}

Retourne : SecurityFeeExit

Arguments

NomTypeRequisDéfautDescription
securityFeePatternIdID!
localizedName[LocalizedStringInput]!
feeAtePercentageFloat!
feeVatPercentageFloat!

Exemple

mutation {
CreateSecurityExitFee(
securityFeePatternId: $securityFeePatternId
localizedName: $localizedName
feeAtePercentage: $feeAtePercentage
feeVatPercentage: $feeVatPercentage
) {
id
securityFeePattern {}
type
feeType {}
label
name
localizedName {}
calculationType {}
calculationBasis {}
calculationPeriodicity {}
feeVatPercentage
feeAtePercentage
feeAtiPercentage
}
}