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! | ✓ | — | — |
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
) {
# Sélectionner les champs souhaités
}
}