UpdateNotificationType
Signature
mutation {
UpdateNotificationType(id: ..., label: ..., status: ..., enableSendingByDefault: ..., localizedSubject: ..., localizedContent: ..., emailsInCopy: ..., forInvestors: ..., forDistributedCustomers: ..., forDistributorAdvisors: ..., forDistributors: ..., forDistributorNetworks: ...)
}
Retourne : NotificationType
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | NotificationTypeId! | ✓ | — | — |
label | String! | ✓ | — | — |
status | NotificationTypeStatus! | ✓ | — | — |
enableSendingByDefault | Boolean! | ✓ | — | — |
localizedSubject | [LocalizedStringInput]! | ✓ | — | — |
localizedContent | [LocalizedStringInput]! | ✓ | — | — |
emailsInCopy | [String]! | ✓ | — | — |
forInvestors | Boolean! | ✓ | — | — |
forDistributedCustomers | Boolean! | ✓ | — | — |
forDistributorAdvisors | Boolean! | ✓ | — | — |
forDistributors | Boolean! | ✓ | — | — |
forDistributorNetworks | Boolean! | ✓ | — | — |
sendDocumentAsAttachment | Boolean | false | — |
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 {}
}
}