Skip to main content

UpdateNotificationType

Stable

Signature

mutation {
UpdateNotificationType(id: ..., label: ..., status: ..., enableSendingByDefault: ..., localizedSubject: ..., localizedContent: ..., emailsInCopy: ..., forInvestors: ..., forDistributedCustomers: ..., forDistributorAdvisors: ..., forDistributors: ..., forDistributorNetworks: ...)
}

Retourne : NotificationType

Arguments

NomTypeRequisDéfautDescription
idNotificationTypeId!
labelString!
statusNotificationTypeStatus!
enableSendingByDefaultBoolean!
localizedSubject[LocalizedStringInput]!
localizedContent[LocalizedStringInput]!
emailsInCopy[String]!
forInvestorsBoolean!
forDistributedCustomersBoolean!
forDistributorAdvisorsBoolean!
forDistributorsBoolean!
forDistributorNetworksBoolean!
sendDocumentAsAttachmentBooleanfalse

Exemple

mutation {
UpdateNotificationType(
id: $id
label: $label
status: $status
enableSendingByDefault: $enableSendingByDefault
localizedSubject: $localizedSubject
localizedContent: $localizedContent
emailsInCopy: $emailsInCopy
forInvestors: $forInvestors
forDistributedCustomers: $forDistributedCustomers
forDistributorAdvisors: $forDistributorAdvisors
forDistributors: $forDistributors
forDistributorNetworks: $forDistributorNetworks
) {
id {}
notificationTypeId {}
category {}
label
localizedLabel {}
status {}
notificationTypeStatus {}
templateId
subject
localizedSubject {}
content
localizedContent {}
emailsInCopy
forInvestors
forDistributedCustomers
forDistributorAdvisors
forDistributors
forDistributorNetworks
enableSendingByDefault
allowDefaultNotificationSetup
attachmentConfigurable
sendDocumentAsAttachment
previewEntityType {}
mailingListType {}
mailingList {}
}
}